@charset "UTF-8";

/* reset */
*,*::before,*::after{box-sizing:border-box}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role='list'],ol[role='list']{list-style:none}body{min-height:100vh;line-height:1.5}h1,h2,h3,h4,button,input,label{line-height:1.1}h1,h2,h3,h4{text-wrap:balance}a:not([class]){text-decoration-skip-ink:auto;color:currentColor}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}textarea:not([rows]){min-height:10em}:target{scroll-margin-block:5ex}

/* =================================
  basic
================================= */
html, body {
  width: 100%;
  min-height: 100%;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  line-height: calc(28/16);
  letter-spacing: 0.03em;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

@media screen and (max-width: 767px) {
  html, body {
    line-height: calc(20/14);
    letter-spacing: normal;
  }
}

img {
  max-width: 100%;
  height: auto;
  line-height: 1;
}

a {
  color: #000;
  text-decoration: none;
  opacity: 1;
}

a:hover {
  opacity: 0.7;
  transition: opacity 200ms ease;
}

section {
  position: relative;
}
section > .inner {
  position: relative;
  width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  section > .inner {
    width: calc(370 / 430 * 100vw);
  }
}

/* =================================
  general
================================= */
.font-roboto {
  font-family: "Roboto", sans-serif;
}

.weight-medium {
  font-weight: 500;
}

.weight-bold {
  font-weight: 700;
}

.weight-black {
  font-weight: 900;
}

.h2 {
  display: flex;
  font-size: 8rem;
  line-height: 11rem;
  letter-spacing: 0.08em;
}
.h2.h2-center {
  justify-content: center;
}
.h2.h2-center .text {
  align-items: flex-end;
}
.h2.h2-center .ja {
  justify-content: flex-end;
}
.h2.h2-center.h2-not-border .text {
  align-items: center;
}
.h2.h2-right {
  justify-content: flex-end;
}
.h2.h2-right .ja {
  justify-content: flex-end;
}
.h2 .text {
  display: flex;
  flex-direction: column;
  color: #00559A;
}
.h2 .ja {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #000;
}
.h2:not(.h2-not-border) .ja:before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #000;
}
.h2.h2-white .text,
.h2.h2-white .ja {
  color: #fff;
}
.h2.h2-white .ja:before  {
  background: #fff;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }

  .h2 {
    display: flex;
    font-size: calc(52/430*100vw);
    line-height: calc(70/430*100vw);
  }
  .h2.h2-center.h2-not-border .font-robot {
    letter-spacing: normal;
  }
  .h2 .ja {
    font-size: calc(16/430*100vw);
  }
}

/* =================================
  .main
================================= */
.main {
  position: relative;
  z-index: 0;
  min-width: 1100px;
  padding: 80px 0 0;
  font-size: 1.6rem;
  background: url(../images/main_bg.jpg) 50% 50% / cover no-repeat fixed;
  overflow: hidden;
}
.main.lower {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .main {
    min-width: 100%;
    padding: 60px 0 0;
    font-size: calc(14/430*100vw);
    background: #000 url(../images/main_bg_sp.jpg) 0 0 / 100% no-repeat fixed;
  }
}
/* =================================
  .header
================================= */
.header {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 1100px;
  height: 80px;
  padding: 0 0 0 40px;
  background: #EFEFEF;
}
.header.lower {
  background: #EFEFEF;
}
.header .logo {
  width: auto;
}
.header .nav {
  display: flex;
  align-items: center;
  gap: 40px;
  color: #050C0F;
}
.header .nav-list {
  display: flex;
  gap: 3em;
  padding: 0;
  font-size: 1.5rem;
  letter-spacing: normal;
}
.header .nav-list .item {
  display: block;
}
.header .contact a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  width: 120px;
  height: 80px;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  background: #00559A;
}
.header .contact a:before {
  content: '';
  display: block;
  width: 26px;
  height: 18px;
  background: url(../images/header_contact.svg) 0 0 / 100% no-repeat;
}

@media screen and (max-width: 767px) {
  .header {
    min-width: 100%;
    height: 60px;
    padding: 0 0 0 15px;
  }
  .header .logo {
    width: 128px;
  }
  .header .contact-sp {
    position: absolute;
    right: 60px;
    top: 0;
  }
  .header .contact-sp a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    width: 144px;
    height: 60px;
    font-size: 13px;
    color: #fff;
    background: #00559A;
  }
  .header .contact-sp a:before {
    content: '';
    display: block;
    width: 22px;
    height: 15px;
    background: url(../images/header_contact.svg) 0 0 / 100% 100% no-repeat;
  }
  .header .menu {
    width: 60px;
    height: 60px;
    background: url(../images/header_menu.svg) 0 0 / 100% 100% no-repeat;
  }
  .header.open .menu {
    background-image: url(../images/header_close.svg);
  }
  .header .nav {
    display: none;
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    padding: calc(60/430*100vw) 0;
    background: #fff;
  }
  .header.open .nav {
    display: block;
  }
  .header .nav-list {
    flex-direction: column;
    gap: 0;
    width: calc(310/430*100vw);
    margin: 0 auto calc(60/430*100vw);
    font-size: calc(18/430*100vw);
    letter-spacing: 0.06em;
    border-top: 1px solid #666;
  }
  .header .nav-list .item a {
    display: block;
    padding: calc(25/430*100vw) 0;
    border-bottom: 1px solid #666;
  }
  .header .contact a {
    flex-direction: row;
    gap: calc(10/430*100vw);
    width: calc(310/430*100vw);
    height: calc(60/430*100vw);
    margin: 0 auto;
    font-size: calc(18/430*100vw);
    letter-spacing: 0.03em;
    text-align: initial;
  }
  .header .contact a:before {
    width: calc(26/430*100vw);
    height: calc(18/430*100vw);
  }
}

/* =================================
  .breadcrumb
================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  width: 1080px;
  margin: 0 auto;
  padding: 17px 0 57px;
}
.breadcrumb li {
  display: block;
}
.breadcrumb li+li:before {
  content: '／';
  padding: 0 0.5em;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    width: calc(370 / 430 * 100vw);
    padding: calc(16/430*100vw) 0 calc(38/430*100vw);
  }
}

/* =================================
  .sec-intro
================================= */
.sec-intro {
  padding: 122px 0 177px;
  text-align: center;
  color: #fff;
}
.sec-intro .inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: center;
  align-items: center;
}
.sec-intro .h1 {
  font-size: 8.3rem;
  line-height: 9rem;
  letter-spacing: 0.14em;
}
.sec-intro .h1 span {
  letter-spacing: 0.19em;
}
.sec-intro .catch {
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
  .sec-intro {
    padding: calc(80/430*100vw) 0;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 45%, rgba(0,0,0,1) 75%,rgba(0,0,0,1) 100%);
  }
  .sec-intro .inner {
    gap: calc(26/430*100vw);
  }
  .sec-intro .h1 {
    font-size: calc(52/430*100vw);
    line-height: calc(62/430*100vw);
    letter-spacing: 0.02em;
  }
  .sec-intro .h1 span {
    letter-spacing: 0.03em;
  }
  .sec-intro .catch {
    font-size: calc(24/430*100vw);
    line-height: calc(38/430*100vw);
    letter-spacing: 0.03em;
  }
}

/* =================================
  .sec-about
================================= */
.sec-about {
  padding: 0 0 100px;
  color: #fff;
  background: linear-gradient(to bottom,  rgba(30,87,153,0) 0%,rgba(25,87,153,1) 18%,rgba(0,85,154,1) 100%);
}
.sec-about .inner {
  padding: 70px 70px 0;
  background: url(../images/about_bg.jpg) 50% 50% / cover no-repeat;
  border: 4px solid #fff;
  border-radius: 20px;
}
.sec-about .col {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 0 0 55px;
}
.sec-about .image {
  width: 980px;
  margin: 0 0 0 50%;
  translate: -50%;
}

@media screen and (max-width: 767px) {
  .sec-about {
    padding: 0 0 calc(90/430*100vw);
    color: #fff;
    background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(25,87,153,1) 18%,rgba(0,85,154,1) 100%);
  }
  .sec-about .inner {
    padding: calc(40/430*100vw) calc(30/430*100vw) calc(60/430*100vw);
    background: url(../images/about_bg.jpg) 50% 50% / cover no-repeat;
    border: calc(4/430*100vw) solid #fff;
    border-radius: calc(20/430*100vw);
  }
  .sec-about .col {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(36/430*100vw);
    margin: 0 0 calc(38/430*100vw);
  }
  .sec-about .col:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(101/430*100vw);
    height: calc(230/430*100vw);
    background: url(../images/about_image2_sp.svg) 0 0 / 100% 100% no-repeat;
  }
  .sec-about .image {
    width: 100%;
    margin: 0;
    translate: initial;
  }
}

/* =================================
  .sec-contract
================================= */
.sec-contract {
  padding: 70px 0 200px;
  background: #1F76BC url(../images/contract_bg.jpg) 50% 100% / 100% no-repeat;
}
.sec-contract .h2 {
  margin: 0 0 115px;
}
.sec-contract .box-wrap {
  background: #fff;
  border-radius: 0 20px 20px 20px;
}
.sec-contract .box-wrap+.box-wrap {
  margin-top: 140px;
}
.sec-contract .title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 60px;
  translate: 0 -60px;
  font-size: 2rem;
  letter-spacing: normal;
  color: #fff;
  background: #00559A;
  border: 4px solid #fff;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
}
.sec-contract .box {
  padding: 60px 70px;
}
.sec-contract .box+.box {
  border-top: 2px dashed #00559A;
}
.sec-contract .box-inner {
  padding: 0 0 0 40px;
  border-left: 10px solid #00559A;
}
.sec-contract .box:first-of-type {
  margin-top: -60px;
}
.sec-contract .box-title {
  margin: 0 0 25px;
  font-size: 4rem;
  color: #00559A;
}
.sec-contract .catch {
  margin: 0 0 9px;
  font-size: 2.8rem;
}
.sec-contract .lead {
  margin: 0 0 22px;
}

@media screen and (max-width: 767px) {
  .sec-contract {
    padding: calc(80/430*100vw) 0 calc(120/430*100vw);
  }
  .sec-contract .h2 {
    margin: 0 0 calc(150/430*100vw);
  }
  .sec-contract .box-wrap {
    border-radius: 0 calc(20/430*100vw) calc(20/430*100vw) calc(20/430*100vw);
  }
  .sec-contract .box-wrap+.box-wrap {
    margin-top: calc(150/430*100vw);
  }
  .sec-contract .title {
    width: calc(250/430*100vw);
    height: calc(90/430*100vw);
    translate: 0 calc(-90/430*100vw);
    font-size: calc(20/430*100vw);
    line-height: calc(30/430*100vw);
    text-align: center;
    border: calc(4/430*100vw) solid #fff;
    border-bottom: none;
    border-radius: calc(20/430*100vw) calc(20/430*100vw) 0 0;
  }
  .sec-contract .box {
    padding: calc(60/430*100vw) calc(20/430*100vw);
  }
  .sec-contract .box-inner {
    padding: 0 0 0 calc(30/430*100vw);
    border-left: calc(10/430*100vw) solid #00559A;
  }
  .sec-contract .box:first-of-type {
    margin-top: calc(-90/430*100vw);
  }
  .sec-contract .box-title {
    margin: 0 0 calc(12/430*100vw);
    font-size: calc(36/430*100vw);
  }
  .sec-contract .catch {
    margin: 0 0 calc(8/430*100vw);
    font-size: calc(24/430*100vw);
    line-height: calc(32/430*100vw);
  }
  .sec-contract .lead {
    margin: 0 0 calc(14/430*100vw);
  }
  .sec-contract .image {
    margin: 0 0 calc(20/430*100vw);;
    overflow-x: scroll;
  }
  .sec-contract .image img {
    width: 800px;
    max-width: initial;
  }
  .sec-contract .simplebar-wrapper {
    padding: 0 0 30px;
  }
  .sec-contract .simplebar-track:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
    display: block;
    width: 100%;
    height: 2px;
    background: #ccc;
  }
  .sec-contract .simplebar-track .simplebar-scrollbar:before {
    height: 6px;
    left: 0;
    right: 0;
    top: 50%;
    translate: 0 -50%;
    border-radius: 6px;
    background: #666;
    opacity: 1;
  }
  .sec-contract .caption {
    font-size: calc(12/430*100vw);
  }
}

/* =================================
  .sec-flow
================================= */
.sec-flow {
  padding: 92px 0 120px;
  background: #fff;
  overflow: hidden;
}
.sec-flow .col {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 0 0 80px;
}
.sec-flow .flow-list {
  counter-reset: flow-number 0;
  display: flex;
  flex-direction: column;
  gap: 37px;
  padding: 0;
  max-width: calc(100% - 400px);
}
.sec-flow .flow-list .item {
  display: block;
}
.sec-flow .flow-list .item .title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 4px;
  font-size: 2.8rem;
  color: #00559A;
}
.sec-flow .flow-list .item .title:before {
  counter-increment: flow-number 1;
  content: counter(flow-number);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 3.4rem;
  line-height: 1;
  color: #fff;
  background: #00559A;
  border-radius: 100%;
}
.sec-flow .flow-list .item .text {
  padding: 0 0 0 70px;
  letter-spacing: normal;
}
.sec-flow .image {
  position: absolute;
  right: -100px;
  bottom: 0;
  width: 480px;
}

@media screen and (max-width: 767px) {
  .sec-flow {
    padding: calc(80/430*100vw) 0 calc(90/430*100vw);
  }
  .sec-flow .col {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(40/430*100vw);
    margin: 0 0 calc(34/430*100vw);
  }
  .sec-flow .flow-list {
    gap: calc(24/430*100vw);
    margin: 0 0 calc(34/430*100vw);
    max-width: none;
  }
  .sec-flow .flow-list .item .title {
    gap: calc(20/430*100vw);
    margin: 0 0 2px;
    font-size: calc(22/430*100vw);
  }
  .sec-flow .flow-list .item .title:before {
    width: calc(40/430*100vw);
    height: calc(40/430*100vw);
    font-size: calc(26/430*100vw);
  }
  .sec-flow .flow-list .item .text {
    padding: 0 0 0 calc(60/430*100vw);
  }
  .sec-flow .image {
    position: static;
    width: calc(430/430*100vw);
    margin: 0 0 0 50%;
    translate: -50%;
    padding: 0 0 0 calc(90/430*100vw);
  }
}

/* =================================
  .sec-news
================================= */
.sec-news {
  padding: 80px 0 100px;
  background: #EBEBEB;
}
.sec-news.lower {
  padding: 0 0 84px;
  background: #fff;
}
.sec-news .h2 {
  margin: 0 0 55px;
}
.sec-news .news-list {
  display: block;
  padding: 0;
  margin-bottom: 30px;
  border-top: 1px solid #666;
}
.sec-news .news-list .item {
  display: flex;
  flex-wrap: wrap;
  padding: 25px 0;
  border-bottom: 1px solid #666;
}
.sec-news .news-list .date {
  width: 115px;
  color: #00559A;
}
.sec-news .news-list .category {
  display: flex;
  gap: 25px;
  width: 160px;
  color: #00559A;
}
.sec-news .news-list .category:before {
  content: '|';
  font-weight: 400;
}
.sec-news .news-list .body {
  width: 805px;
}
.sec-news .more {
  display: flex;
  justify-content: flex-end;
}
.sec-news .more a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 40px;
  font-size: 16px;
  font-weight: 700;
  color: #00559A;
  background: #fff url(../images/news_arrow.png) 178px 50% / 12px no-repeat;
}
.sec-news .back {
  display: flex;
  justify-content: center;
}
.sec-news .back a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 40px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #00559A url(../images/news_arrow_white.png) 178px 50% / 12px no-repeat;
}

@media screen and (max-width: 767px) {
  .sec-news {
    padding: calc(80/430*100vw) 0 calc(90/430*100vw);
  }
  .sec-news .h2 {
    margin: 0 0 calc(40/430*100vw);
  }
  .sec-news .news-list .item {
    display: flex;
    flex-wrap: wrap;
    padding: calc(15/430*100vw) 0;
  }
  .sec-news .news-list .date {
    width: calc(100/430*100vw);
  }
  .sec-news .news-list .category {
    gap: calc(20/430*100vw);
    width: calc(200/430*100vw);
  }
  .sec-news .news-list .body {
    width: 100%;
    margin: calc(14/430*100vw) 0 0;
  }
  .sec-news .more a {
    width: calc(170/430*100vw) ;
    height: calc(38/430*100vw) ;
    font-size: calc(14/430*100vw) ;
    background: #fff url(../images/news_arrow.png) calc(150/430*100vw)  50% / calc(10/430*100vw)  no-repeat;
  }
  .sec-news .back a {
    width: calc(170/430*100vw) ;
    height: calc(38/430*100vw) ;
    font-size: calc(14/430*100vw) ;
    background: #00559A url(../images/news_arrow_white.png) calc(150/430*100vw)  50% / calc(10/430*100vw)  no-repeat;
  }
}

/* =================================
  .sec-faq
================================= */
.sec-faq {
  padding: 80px 0 100px;
  background: #fff;
}
.sec-faq .inner {
  display: flex;
  justify-content: space-between;
}
.sec-faq .faq-list {
  display: block;
  width: 780px;
  padding: 0;
  border-top: 1px solid #666;
}
.sec-faq .faq-list .item {
  display: block;
  border-bottom: 1px solid #666;
  cursor: pointer;
}
.sec-faq .faq-list .item .q {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 100px 28px 32px;
}
.sec-faq .faq-list .item .q:before {
  content: 'Q';
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 3rem;
}
.sec-faq .faq-list .item .q:after {
  content: '';
  position: absolute;
  right: 38px;
  top: 50%;
  translate: 0 -50%;
  width: 46px;
  height: 46px;
  background: url(../images/faq_arrow.svg) 0 0 / 100% no-repeat;
  rotate: 180deg;
}
.sec-faq .faq-list .item.show .q:after {
  rotate: 0deg;
}
.sec-faq .faq-list .item .a {
  display: none;
  align-items: center;
  gap: 28px;
  padding: 28px 30px 28px 80px;
  color: #00559A;
  background: #F5F5F5;
}
.sec-faq .faq-list .item.show .a {
  display: flex;
}
.sec-faq .faq-list .item .a:before {
  content: 'A';
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
  .sec-faq {
    padding: calc(80/430*100vw) 0 calc(90/430*100vw);
  }
  .sec-faq .inner {
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(40/430*100vw);
  }
  .sec-faq .faq-list {
    width: 100%;
  }
  .sec-faq .faq-list .item .q {
    gap: calc(21/430*100vw);
    padding: calc(20/430*100vw) calc(40/430*100vw) calc(20/430*100vw) calc(21/430*100vw);
  }
  .sec-faq .faq-list .item .q:before {
    font-size: calc(26/430*100vw);
  }
  .sec-faq .faq-list .item .q:after {
    right: 0;
    translate: 0 -50%;
    width: calc(36/430*100vw);
    height: calc(36/430*100vw);
  }
  .sec-faq .faq-list .item .a {
    gap: calc(21/430*100vw);
    padding: calc(20/430*100vw) calc(40/430*100vw) calc(20/430*100vw) calc(60/430*100vw);
  }
  .sec-faq .faq-list .item .a:before {
    font-size: calc(26/430*100vw);
  }
}

/* =================================
  .sec-contact
================================= */
.sec-contact {
  padding: 70px 0 100px;
  background: url(../images/contact_bg.jpg) 50% 50% / cover no-repeat;
  color: #fff;
  text-align: center;
}
.sec-contact .h2 {
  margin: 0 0 45px;
}
.sec-contact .catch {
  margin: 0 0 24px;
  font-size: 2.8rem;
}
.sec-contact .button {
  display: flex;
  justify-content: center;
  margin: 0 0 30px;
}
.sec-contact .button a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 432px;
  height: 80px;
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  color: #00559A;
  background: #fff;
}
.sec-contact .button a:before {
  content: '';
  position: absolute;
  left: 40px;
  top: 50%;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  background: url(../images/contact_icon_arrow.svg) 0 0 / 100% 100% no-repeat;
}
.sec-contact .button a:after {
  content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  background: url(../images/contact_icon_blank.svg) 0 0 / 100% 100% no-repeat;
}
.sec-contact .tel {
  font-size: 6.5rem;
  line-height: 1.4;
}
.sec-contact .tel .caption {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .sec-contact {
    padding: calc(74/430*100vw) 0 calc(88/430*100vw);
  }
  .sec-contact .h2 {
    margin: 0 0 calc(50/430*100vw);
  }
  .sec-contact .catch {
    margin: 0 0 calc(26/430*100vw);
    font-size: calc(22/430*100vw);
  }
  .sec-contact .button {
    margin: 0 0 calc(40/430*100vw);
  }
  .sec-contact .button a {
    width: 100%;
    height: calc(80/430*100vw);
    font-size: calc(22/430*100vw);
  }
  .sec-contact .button a:before {
    left: calc(30/430*100vw);
    width: calc(16/430*100vw);
    height: calc(16/430*100vw);
  }
  .sec-contact .button a:after {
    right: calc(30/430*100vw);
    width: calc(20/430*100vw);
    height: calc(20/430*100vw);
  }
  .sec-contact .tel {
    font-size: calc(56/430*100vw);
    line-height: 1.2;
  }
  .sec-contact .tel .caption {
    font-size: calc(14/430*100vw);
  }
}

/* =================================
  .footer
================================= */
.footer {
  position: relative;
  z-index: 0;
  width: 100%;
  min-width: 1100px;
  background: #F5F5F5;
}
.footer .logo {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  background: #fff;
}
.footer .col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1080px;
  height: 47px;
  margin: 0 auto;
  font-size: 1.2rem;
}
.footer .col .nav {
  display: flex;
  gap: 3em;
}

@media screen and (max-width: 767px) {
  .footer {
    min-width: 100%;
  }
  .footer .logo {
    padding: 41px 0;
  }
  .footer .logo img {
    width: 186px;
  }
  .footer .col {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    height: auto;
    padding: 35px 0 40px;
    font-size: 1.6rem;
  }
  .footer .col .nav {
    display: flex;
    gap: 3em;
  }
  .footer .col .copy {
    font-size: 1.2rem;
  }
}

/*20260114追加ここから*/
.sec-intro__logo{
  max-width: 65%;
}
@media screen and (max-width: 767px) {
  .sec-intro__logo{
    max-width: 90%;
  }
}
.sec-about.logo{
  background: linear-gradient(to bottom, rgba(30,87,153,0) 0%,rgba(25,87,153,1) 18%,rgba(0,85,154,1) 100%);
}
@media screen and (max-width: 767px) {
  .sec-about.logo{
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(25,87,153,1) 18%,rgba(0,85,154,1) 100%);
  }
}
.sec-about.logo .inner{
  background: #fff;
  padding-bottom: 70px;
  color: rgba(0,85,154,1);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec-about.logo .inner{
    padding-bottom: 40px;
    display: block;
  }
}
.sec-about.logo .image{
  width: 240px;
  margin: 0;
  translate: 0;
}
.sec-about.logo .col::after{
  display: none;
}
@media screen and (max-width: 767px) {
  .sec-about.logo .image{
    width: 100%;
  }
}
.sec-about.logo .h2{
  font-size: 6rem;
  line-height: 9rem;
}
@media screen and (max-width: 767px) {
  .sec-about.logo .h2{
    font-size: 4rem;
    line-height: 6rem;
  }
}
.sec-about.logo .h2 .ja{
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec-about.logo .h2 .ja{
    font-size: 1.3rem;
  }
}
.sec-about.logo .h3{
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .sec-about.logo .h3{
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .sec-about.logo .is-wrap{
    padding-right: 4rem;
  }
}
.sec-about#anc-about, .sec-about.parking {
  background-color: rgba(0, 85, 154, 1) !important;
  margin-top: -1px;
}
.sec-about.parking > a {
  display: block;
  position: relative;
  width: 1080px;
  margin: 0 auto;
}
.sec-about.parking .inner {
  background: url(../images/about_bg2.png) 50% 50% / cover no-repeat;
}
.sec-about.parking .col {
  margin-bottom: 70px;
}
.sec-about.parking .col > h2 .text .font-roboto {
  font-size: 9rem;
}
.sec-about.parking .col > h2 .text span {
  font-size: 2.4rem;
}
.sec-about.parking .col > p {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .sec-about#anc-about, .sec-about.parking {
    background: rgba(0, 85, 154, 1);
  }
  .sec-about.parking > a {
    width: calc(370 / 430 * 100vw);
  }
  .sec-about.parking .col{
    margin-bottom: 0;
  }
  .sec-about.parking .col::after {
    content: none;
  }
  .sec-about.parking .col > h2 .text .font-roboto {
    font-size: 5rem;
  }
  .sec-about.parking .col > h2 .text span {
    font-size: 1.6rem;
  }
  .sec-about.parking .col > p {
    font-size: 2rem;
  }
}