@charset "utf-8";

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
*:focus {
outline: none;
}
/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* common */

body,html {
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    height: 100%;
    margin: 0;
    background: #F1F0EC;
    color: #333333;
      overflow-x: hidden;
}
a{
    text-decoration: none;
    transition: 0.3s;
}
a:hover{
  opacity: 0.8;
}
.btn{
    display: block;
}
.common-inner{
  width: 1120px;
  margin: 0 auto;
}

/* header */
.gnav{
    background-color: #DF181C;
    width: 1100px;
    height: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 37px;
    position: fixed;
    top: 47px;
    left: 50%;
    margin-left: -550px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    z-index: 2;
}
.gnav__heading{
    width: 120px;
    margin: 0 0 0 30px;
}
.gnav__heading img{
    width: 100%;
}
.gnav__menu{
    display: flex;
    justify-content: flex-start;
    margin-left: auto;
    list-style: none;
    margin-right: 50px;
}
.gnav__menu li{
    margin-left: 15px;
}
.gnav__menu a{
    color: #fff;
    font-size: 20px;
    display: block;
    transition: 0.3s;
    line-height: 1;
    padding: 7px 13px;
    border-radius: 20px;
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
}
.gnav__menu a:hover{
    color: #DF181C;
    background-color: rgba(255,255,255,0.8);
}

/* kv */
.kv{
    height: 650px;
    background-image: url(img/img_kv.jpg);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
}
.kv__content{
  color: #fff;
  text-align: center;
}
.kv__logo{
  width: 480px;
  height: auto;
  margin: 0 auto;
}
.kv__description{
  font-size: 26px;
  font-weight: bold;
  text-shadow: 0 3px 6px rgba(0,0,0,0.55);
  line-height: 1;
  margin-top: 50px;
}

/* about */
.about{
  padding-top:110px;
}
.section-wrap{
  display: flex;
  justify-content: space-between;
}
.content-photo{
  width: 53%;
}
.about__photo{
  border-radius: 0 60px 60px 0;
}
.about .section-content{
  padding-right: calc((100vw - 1160px) / 2);
  padding-left: 30px;
}
.section-content__heading{
  font-size: 70px;
  color: #DF181C;
  margin: 0 0 30px;
  text-align: center;
  width: fit-content;
  font-weight: normal;
  font-family: "futura-pt", sans-serif;
}
.section-content__heading span{
  font-size: 20px;
  display: block;
  font-family: "LINE Seed JP", sans-serif;
}
.section-content__description{
  font-size: 20px;
  line-height: 2;
}
.btn-index{
  font-size: 16px;
  background: #ffffff;
  color: #333333;
  border:1px solid #C6C6C6;
  line-height: 1;
  padding:15px 30px;
  border-radius: 30px;
  margin-top: 30px;
  display: block;
  width: fit-content;
}

/* service */
.service{
  padding-top: 150px;
  flex-direction: row-reverse;
}
.service__photo{
  border-radius: 60px 0 0 60px;
}
.section-content__list{
  font-size: 20px;
  list-style: disc;
}
.section-content__list li{
  margin-bottom: 10px;
}
.section-content__list li span{
  font-size: 16px;
}
.service .section-content{
  padding-left: calc((100vw - 1160px) / 2);
  padding-right: 30px;
}

/* news */
.news{
  padding:100px 0 135px ;
}
.news>.section-content__heading{
  text-align: center;
  margin: 0 auto;
}
.news__list{
  width: 1120px;
  margin: 0 auto;
  list-style-type: none;
  background: #ffffff;
  border-radius: 20px;
  padding:20px 80px;
  margin-top:50px;
}
.news__list a{
  display: block;
}
.news__list li{
  padding:16px 0;
  border-bottom:1px dotted #e6e6e6;
}
.news__list li:last-child{
  border:0;
}
.news__date{
  font-size: 18px;
  font-weight: bold;
  margin-right: 20px;
}
.news__category{
  font-size: 16px;
  color: #666666;
  border: 1px solid #C6C6C6;
  padding: 6px 23px;
  border-radius: 30px;
  line-height: 1;
}
.news__title{
  font-size: 20px;
  line-height: 1.4;
  margin: 8px 0;
}

/* portfolio*/
.portfolio{
  background: #fff;
}
.portfolio .common-inner{
  padding:90px 0 100px;
}
.portfolio .section-content__heading{
  margin: 0 auto 45px;
}
.portfolio-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.swiper{
  overflow: visible!important;
}
.swiper-slide img{
  width: 290px;
  height: 370px;
  border-radius: 60px;
  border: 1px solid #E0ACAC;

}
.swiper-pagination-bullet{
  width: 70px;
  height: 2px;
  border-radius: 0;
  margin: 0!important;
}
.swiper-pagination-bullet-active{
  background:  #DF181C;
}
.swiper-pagination{
  text-align: left;
  bottom: -80px !important;
  left: 220px !important;
}
.swiper-button-next, .swiper-button-prev{
  color: #DF181C;
  width: 80px;
  height: 80px;
  border: 1px solid #DF181C;
  border-radius: 40px;
  top:115%;
}
.swiper-button-next{
  right: unset;
  left: 110px;
}
.swiper-button-next:after{
  margin-left: 6px;
}
.swiper-button-prev:after{
  margin-left: -6px;
}

/* contact */
.contact{
  background: #ffffff;
}
.contact .common-inner{
  padding:90px 0 0px;
}
.contact .section-content__heading{
  margin: 0 auto 45px;
}
.contact-wrap{
  background-color: #F2F2F2;
  border-radius: 30px;
  padding:45px;
  text-align: center;
}
.btn-contact{
  color: #fff;
  font-size: 18px;
  padding:18px 90px;
  width: fit-content;
  background: #E34949;
  border-radius: 30px;
  margin: 0 auto;
}
.btn-contact:hover{
  color: #E34949;
  background: #FAD0D0;
}


/* Access */
.access{
  background: #fff;
}
.access-logo{
  margin:100px 0;
  width: 100%;
}
.access .section-content__heading{
  margin:0 auto 40px;
}
.map-wrap{
  height: 584px;
  overflow: hidden;
  position: relative;
}
.map-wrap>iframe{
  width: 150%;
  height: 150%;
  position: absolute;
  top: 50%;left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

/* footer */
footer{
  background: #DF181C;
}
footer .common-inner{
  display: flex;
  justify-content: space-between;
  padding:80px 0 60px;
  align-items: flex-start;
}
.footer-nav{
  list-style-type: none;
  padding:0;
  margin: 0;
}
.footer-nav>li{
  margin-bottom: 20px;
}
.footer-nav a{
  color: #fff;
  font-size: 28px;
  line-height: 35px;
  font-family: "futura-pt", sans-serif;
}
.signature{
  font-size: 16px;
  padding-bottom: 30px;
  color: #fff;
  text-align: center;
}

/* page common */
.common-header{
  margin-bottom:50px;
}
.common-header>.common-inner{
  width: 1160px;
}
.common-header__heading{
  background-image: url(img/bg_header.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 6px 3px;
  font-size: 70px;
  font-family: "futura-pt", sans-serif;
  font-weight: normal;
  color: #DF181C;
  text-align: center;
  padding-bottom: 66px;
  padding-top: 180px;
  margin: 0;
}
.common-header__heading >span{
  font-size: 20px;
  font-family: "LINE Seed JP", sans-serif;
  display: block;
}
.common-content{
  padding-bottom:80px;
}
.separate-wrap{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* page about */

.about-img{
  width: 560px;
  height: auto;
}
.about-content{
  width: 480px;
}
.about-content h3{
  font-family: "futura-pt", sans-serif;
  color: #DF181C;
  font-size: 35px;
  margin:0 0 20px;
  line-height: 1;
}
.about-content h4{
  font-size: 20px;
  line-height: 1;
  margin:0 0 10px;
}
.about-content p{
  font-size: 18px;
  line-height: 40px
}
.profile{
  margin-top: 200px;
}
.profile__heading{
  font-size: 35px;
  font-family: "futura-pt", sans-serif;
  color: #DF181C;
  background-image: url(img/bg_header.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 6px 3px;
  width: 624px;
  padding: 0 0 0.8em;
  margin-bottom: 0.8em;
}
.profile__description{
  margin: 0;
  padding: 0;
}
.profile__description dt{
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 0 0 10px;
}
.profile__description dd{
  font-size: 20px;
  margin: 0;
  padding: 0 0 30px;
}
.profile__description dd strong{
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 10px;
}

/* service */

.service-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-list li{
  display: flex;
  justify-content: space-between;
  padding: 50px 0 200px;
}
.service-list li:nth-child(even){
  flex-direction: row-reverse;
}
.service-list li:not(:last-child){
  background-image: url(img/bg_header.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 6px 3px;
}
.service-list li img{
  width: 560px;
  height: auto;
}
.service-list li>div{
  width: 480px;
}
.sevice__heading{
  font-family: "futura-pt", sans-serif;
  color: #DF181C;
  font-size: 35px;
  margin:0 0 20px;
  line-height: 1;
}
.sevice__heading+h4{
  font-size: 20px;
  line-height: 1;
  margin:0 0 10px;
}
.service-content p{
  font-size: 16px;
  line-height: 30px
}

/* portfolio */
.page-portfolio{
  background: #fff;
}
.portfolio-content{
  width: 480px;
}
.portfolio-content h3{
  font-family: "futura-pt", sans-serif;
  color: 333333;
  font-size: 20px;
  margin:0 0 20px;
  line-height: 1;
}
.portfolio-content p.date{
  margin: 0 0 5px;
  line-height: 1;
}
.portfolio-content p.description{
  margin: 0;
  line-height: 30px
}
.portfolio-content p.date,
.portfolio-content p.description{
  font-size: 16px;
}
.portfolio-wrap{
  flex-direction: row-reverse;
  background-image: url(img/bg_header.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 6px 3px;
  padding-bottom:120px;
}

/* contact */
.contact-header .common-header__heading{
  background: none;
}
.contact-form{
  width: 750px;
  margin: 0 auto;
  padding: 0;
  font-size: 20px;
}
dt.required::before{
  content: "※";
  color: #DF181C;
  font-size: 20px;
  margin-left: 0px;
}

.contact-form dt{  padding-bottom: 20px;}
.contact-form dd{
  margin: 0;
  padding-bottom: 50px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
  border: none;
  border-radius: 20px;
  background: #ffffff;
  padding:35px 50px;
  width: 100%;
  resize: none;
}
textarea{
  height: 350px;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder{
  color: #ADACAC;
}
.privacy-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;;
}
.btn-submit{
  border: 1px solid #A5A5A5;
  background: #ffffff;
  -webkit-appearance: none;
  border-radius: 20px;
  padding: 40px 150px;
  transition: 0.3s;
  margin: 100px auto 0;
  display: block;
}
.btn-submit:hover{
  cursor: pointer;
  background-color: #DF181C;
  border: 1px solid transparent;
  color: #fff;
}
select{
  -webkit-appearance: none;
  border: none;background: none;
  width: 100%;
  padding: 35px 50px;
}
select:hover{
  cursor: pointer;
}
.select-wrapper{
  background: #ffffff;
  border-radius: 20px;
  position: relative;
}
.select-wrapper::after{
  content:"";
  display: block;
  position: absolute;
  top:50%;
  right: 17px;
  transform: translateY(-50%);
  width: 40px;
  height: 60px;
  background-image: url(img/btn_select.svg);
  background-repeat: no-repeat;
}
.select-wrapper:hover::after{
  opacity: 0.8;
}

/* news */
.news-header .common-header__heading{
  background: none;
}
.news-single{
  width: 1120px;
  margin: 0 auto;
  list-style-type: none;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 80px;
  margin-top: 50px;
}
.news-single__title{
  line-height: 1.4;
  background-image: url(img/bg_header.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 6px 3px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  white-space: pre-wrap;
  font-size: 35px;
}
.news-single__body {
    margin: 80px 0;
    font-size: 18px;
}
.news-single__body>p{
  line-height: 1.8;
  margin-bottom: 2em;
}
.news-single__body>h2{
  font-size: 30px;
  padding-left: 20px;
  position: relative;
}
.news-single__body>h3{
  font-size: 24px;
  padding-left: 20px;
  position: relative;
}
.news-single__body>h2::before,
.news-single__body>h3::before{
  content:"";
  display: block;
  width: 8px;
  height: 1em;
  border-radius: 6px;
  background: #DF181C;
  position: absolute;
  left:0;
}
.news-single__body>p+h2,
.news-single__body>p+h3{
  margin-top:3em;
}
.news-single__body figure img{
  display: block;
  margin: 0 auto 10px;
  max-width: 100%;
  border-radius: 10px;
}
.news-single__body figcaption{
  font-size: 16px;
  font-style: italic;
  text-align: center;
  
}
.news-single__body>ul,
.news-single__body>ol{
  margin: 0 0 2em 1.5em;
}
.news-single__body>blockquote{
  background: #f7f7f7;
  line-height: 1.8;
  margin: 0 0 2em;
  padding:30px;
  border-radius: 20px;
}
.news-single__body>blockquote>p{
  margin: 0;
}