@charset "UTF-8";
/**********************
- ROOT
- BASE
- GENERAL
  -- FONT
  -- ALIGN
  -- FLEX
  -- LIST
  -- OTHER
- HEADER
- BREADCRUMB
- CONTAINER
- HEADING
- BUTTON
- CTA
- FOOTER
- FLOATING
- ARCHIVE
- SINGLE
- CONTACT
- PAGE PARTS
- LOADING
- COLOR
- MARGIN
- ANIMATION
- RESPONSIVE
***********************/

/**********************
* ブレイクポイント
* 560px/960px
**********************/


/*********************
ROOT
**********************/
:root {
  --base: #EAEFF5;
  --bg-1: #E8F6F9;
  --bg-2: #FFFBBF;
  --text-main: #222;
  --text-sub: #7E7F83;

  --main-color-1: #00305B;
  --main-color-2: #6BCCF0;
  --main-color-3: #BCE3F2;
  --sub-color-1: #FFF000;
  --sub-color-2: #FFFBB3;
  --accent-color-1: #D17D00;
  --accent-color-2: #CF1531;
  --gradient: linear-gradient(70deg, #5DC5F7, #FA966B);

  --font-jp: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  --font-num: 'Lato', sans-serif;
  --font-min: 'Yu Mincho', 'YuMincho', serif;
  --light: 300;
  --normal: 400;
  --bold: 700;

  --container: calc(1920px + 6%);
  --container-side: 3%;
  --container-ll: 1800px;
  --container-l: 1200px;
  --container-m: 1000px;
  --container-s: 660px;
  --container-ss: 480px;

}


/*********************
BASE
*********************/
html {
  font-size: 62.5%;
}

body {
  background-color: var(--base);
  color: var(--main-color-1);
  font-family: var(--font-jp);
  font-weight: var(--normal);
  font-size: 1.6rem;
  letter-spacing: .05em;
  line-height: 1.7;
}

section {
  position: relative;
  width: 100%;
}

h1,
h2,
h3 {
  font-weight: var(--normal);
}

a {
  transition: all 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  line-height: 0;
  vertical-align: bottom;
}

ol,
ul {
  padding: 0;
}

dl,
dt,
dd {
  margin: 0;
}


@media only screen and (max-width: 560px) {
  body {
    font-size: 1.4rem;
  }

}


/*********************
GENERAL
*********************/

/*FONT*/
.font-en {
  font-family: var(--font-en);
}

.font-num {
  font-family: var(--font-num);
}

.font-min {
  font-family: var(--font-min);
}

.small {
  font-size: .85em;
}

.medium {
  font-size: 1.8rem;
}

.large {
  font-size: 2.4rem;
}

.strong {
  font-weight: var(--bold);
}

.uppercase {
  text-transform: uppercase;
}

.line-heighter,
.line-heighter * {
  line-height: 2.1;
}

.line-heighter p {
  margin: 0 0 2em;
}

@media screen and (max-width: 560px) {
  .large {
    font-size: 2rem;
  }

  .medium {
    font-size: 1.6rem;
  }
}


/*ALIGN*/
.center {
  text-align: center;
}

.center>* {
  margin-left: auto;
  margin-right: auto;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}


/*IMAGE*/
.img-circle {
  border-radius: 50%;
}

.img-radius {
  border-radius: 30px;
}

.img-object {
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}

.img-object>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


/*FLEX*/
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.nowrap {
  flex-wrap: nowrap;
}

.justify-left {
  justify-content: left;
}

.space-around {
  justify-content: space-around;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.cell {
  position: relative;
}

.cell img {
  display: block;
  width: 100%;
}

.cell>*:last-child {
  margin-bottom: 0;
}

.cell--1-2 {
  width: 48%;
}

.cell--1-3 {
  width: 30%;
}

.cell--1-4 {
  width: 23%;
}

.cell--2-3 {
  width: 60%;
}

.cell--3-4 {
  width: 73%;
}

@media only screen and (max-width: 560px) {
  .flex {
    flex-direction: column;
  }

  .cell--1-2,
  .cell--1-3,
  .cell--1-4,
  .cell--2-3,
  .cell--3-4 {
    margin-bottom: 1em;
    width: 100%;
  }

  .order0 {
    order: 0;
  }

  .order1 {
    order: 1;
  }
}


/*LIST*/
.list-none {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list-dot li {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
  margin: 0 0 1em;
}

.list-dot li::before {
  content: '';
  background-color: var(--main-color-2);
  border-radius: 50%;
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: .5em;
}


/*OTHER*/
.relative {
  position: relative;
}

.block {
  display: block;
}

.shadow {
  box-shadow: 0 0 1.8rem -1rem rgb(0 0 0 / 27%);
}

.marker {
  background: linear-gradient(transparent 60%, var(--sub-color-2) 60%);
}

.box {
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
}

.box>*:last-child {
  margin-bottom: 0;
}


@media only screen and (max-width: 960px) {}

@media only screen and (max-width: 560px) {}



/*********************
HEADER
*********************/
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: auto;
  height: 70px;
  /* #pc_hdr end ***************************************/
  /* #sp_hdr ***************************************/
}

header .container .container-ll #pc_hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

header .container .container-ll #pc_hdr nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 2rem;
  height: 100%;
}

header .container .container-ll #pc_hdr nav ul li {
  display: block;
  height: 100%;
}

header .container .container-ll #pc_hdr nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--main-color-1);
  font-size: 1.8rem;
}

@media screen and (max-width: 1440px) {
  header .container .container-ll .header-logo {
    width: 30%;
  }

  header .container .container-ll #pc_hdr nav ul {
    gap: 1.6rem;
  }

  header .container .container-ll #pc_hdr nav ul li a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1200px) {
  header .container .container-ll #pc_hdr {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  header .container .container-ll .header-logo {
    width: 46%;
    min-width: 320px;
  }
}

@media screen and (max-width: 560px) {
  header .container .container-ll {
    flex-direction: row;
    align-items: center;
  }

  header .container .container-ll .header-logo {
    min-width: 240px;
  }
}

header #sp_hdr {
  width: 70px;
  height: 70px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
  display: none;
  /* #sp_hdr end ***************************************/
}

header #sp_hdr #js-hamburger {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1001;
}

header #sp_hdr #js-hamburger span {
  position: absolute;
  width: 32px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--main-color-1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

header #sp_hdr #js-hamburger span:nth-of-type(1) {
  top: 24px;
}

header #sp_hdr #js-hamburger span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

header #sp_hdr #js-hamburger span:nth-of-type(3) {
  bottom: 24px;
}

header #sp_hdr .black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

header #sp_hdr.open #js-hamburger span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 38px;
}

header #sp_hdr.open #js-hamburger span:nth-of-type(2) {
  opacity: 0;
}

header #sp_hdr.open #js-hamburger span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 38px;
}

header #sp_hdr.open .sp-nav {
  right: 0;
  background-color: var(--base);
}

header #sp_hdr.open .sp-nav ul li {
  font-size: 18px;
  font-family: var(--font-min);
}

header #sp_hdr.open .sp-nav ul li:not(:first-child) {
  margin-top: 16px;
}

header #sp_hdr.open .sp-nav ul li a {
  position: relative;
  padding-left: 24px;
}

header #sp_hdr.open .sp-nav ul li a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: var(--main-color-1);
}

header #sp_hdr.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

header #sp_hdr .sp-nav {
  position: fixed;
  right: -100%;
  top: 0;
  width: 80.6%;
  max-width: 600px;
  height: 100vh;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
  padding: 147px 8% 120px 8%;
}

header #sp_hdr .sp-nav div ul li {
  margin-bottom: 33px;
}

header #sp_hdr .sp-nav div ul li a {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.039em;
  color: #fff;
}

header #sp_hdr .sp-nav div ul li:nth-child(1) {
  margin-bottom: 38px;
}

header #sp_hdr .sp-nav div ul li:nth-child(1) a {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  header #sp_hdr {
    display: block;
  }
}


/*********************
BREADCRUMBS
*********************/
#breadcrumb {
  padding: 1.5em 0 2em;
  background-color: var(--bg-1);
}

.breadcrumb-list {
  padding: 0;
  max-width: var(--container-l);
  margin: 0 auto;
}

.breadcrumb-item {
  color: var(--text-main);
  line-height: 1;
  list-style: none;
  display: inline-block;
  margin: 0;
}

.breadcrumb-item:not(:last-of-type)::after {
  content: '/';
  padding: 0 0.5em;
}

.breadcrumb-item a {
  color: inherit;
  font-weight: var(--normal);
  text-decoration: none;
}



/*********************
CONTAINER
*********************/
.section-wrap {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.container {
  max-width: var(--container);
  padding-right: var(--container-side);
  padding-left: var(--container-side);
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.container-ll {
  max-width: var(--container-ll);
  margin: 0 auto;
  height: 100%;
}

.container-l {
  max-width: var(--container-l);
  margin: 0 auto;
  height: 100%;
}

.container-m {
  max-width: var(--container-m);
  margin: 0 auto;
  height: 100%;
}

.container-s {
  max-width: var(--container-s);
  margin: 0 auto;
  height: 100%;
}

.container-ss {
  max-width: var(--container-ss);
  height: 100%;
}

.map-wrap {
  position: relative;
}

.map-wrap::before {
  content: "";
  display: block;
  padding-top: 50%;
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}


@media only screen and (max-width: 560px) {
  .section-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .container {
    padding-right: 5%;
    padding-left: 5%;
  }

}

/*********************
HEADING
*********************/
.h1-page {
  font-size: 3rem;
  font-weight: var(--bold);
  margin-bottom: 1em;
}

.h2-top {
  font-size: 3rem;
  font-weight: var(--bold);
  margin-bottom: 1em;
}

.h2-page {
  font-size: clamp(32px, 2.08vw, 40px);
  font-weight: var(--normal);
  position: relative;
}

.h3-page {
  font-size: 2rem;
  font-weight: var(--bold);
  margin-bottom: 1em;
}

@media only screen and (max-width: 960px) {
  .h2-page {
    font-size: clamp(24px, 3.34vw, 32px);
  }
}


@media only screen and (max-width: 560px) {}



/*********************
BUTTON
*********************/
.cta-btn-wrap {
  margin-top: 30px;
}

.cta-btn-wrap ul {
  gap: 20px;
}

.btn a:hover {
  opacity: .8;
}

.btn {
  width: 400px;
  height: 80px;
}

.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.btn-main a {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(209, 125, 0, 1) 0%, rgba(221, 186, 134, 1) 100%);
  color: #fff;
  font-weight: 700;
  transition: all .3s;
}

.btn-sub a {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
  color: #fff;
  font-weight: 700;
  transition: all .3s;
}


@media only screen and (max-width: 560px) {
  .btn {
    width: 100%;
    max-width: 360px;
    height: 64px;
  }
}


/*********************
CTA
*********************/
.cta {
  background: url(../image/top/cta.jpg) center center / cover;
}

.cta .container .container-l p {
  color: #fff;

}

@media only screen and (max-width: 560px) {
  .cta .container .container-l>.large {
    font-size: 16px;
    text-align: left;
  }

  .cta-btn-wrap {
    margin-top: 20px;
  }

  .cta-btn-wrap ul {
    flex-direction: row;
  }
}



/*********************
FOOTER
*********************/
#footer {
  position: relative;
  background-color: #fff;
}

.footer-cta {
  padding: 80px 0 100px;
}

.footer-logo {
  display: block;
  width: 23.8%;
  min-width: 300px;
}

.footer-main {
  padding: 0;
  position: relative;
}

.footer-menu-main {
  padding: 60px 0 80px;
}

.footer-main-list {
  padding: 0;
  margin: 0;
  justify-content: flex-start;
}

.footer-main-item,
.footer-foot-item {
  color: var(--main-color-1);
  font-size: 1.4rem;
  text-transform: uppercase;
  list-style: none;
  margin: 0 3em 0 0;
}

.footer-main-item:last-of-type {
  margin: 0;
}

.footer-main-link {
  color: inherit;
  text-decoration: none;
}

.copyright {
  margin-top: 20px;
  text-align: right;
}

.copyright a {
  color: var(--main-color-1);
  font-size: 1.4rem;
  text-decoration: none;
}

ul.sns_wrap {
  width: fit-content;
  gap: 10px;
  margin-top: 20px;
}

ul.sns_wrap li {
  width: 32px;
  height: 32px;
}

nav.footer-menu-foot .wrap:not(:first-child) {
  padding-top: 20px;
}

nav.footer-menu-main .footer-main-list {
  gap: 10px;
}

nav.footer-menu-main .footer-main-list .footer-main-item {
  font-size: 18px;
}

nav.footer-menu-foot .wrap .footer-foot-list {
  width: fit-content;
  gap: 10px 35px;
  padding-top: 10px;
  font-size: 14px;
}

nav.footer-menu-foot .wrap .footer_title {
  width: fit-content;
  border-bottom: 1px solid #ccc;
  position: relative;
}

nav.footer-menu-foot .wrap .footer_title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--main-color-1);
  z-index: 2;
}

nav.footer-menu-foot .wrap .footer-foot-list .footer-foot-item a {
  position: relative;
  padding-right: 22px;
  text-transform: lowercase;
}

nav.footer-menu-foot .wrap .footer-foot-list .footer-foot-item a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../image/top/icon_link.png);
}

@media only screen and (max-width:560px) {
  .footer-cta {
    padding: 45px 0 60px;
  }

  .footer-menu-main {
    padding: 40px 0;
  }

  #footer .flex {
    flex-direction: row;
  }
}


/*********************
FLOATING
*********************/
#floating {
  position: fixed;
  top: 120px;
  right: 0;
  z-index: 999;
}

#floating nav ul {
  flex-direction: column;
  gap: 10px;
}

#floating nav ul li.btn {
  width: 60px;
  height: fit-content;
}

#floating nav ul li.btn:nth-child(1) a {
  background: linear-gradient(0deg, rgba(209, 125, 0, 1) 0%, rgba(221, 186, 134, 1) 100%);
}

#floating nav ul li.btn:nth-child(2) a {
  background: linear-gradient(0deg, rgba(0, 48, 91, 1) 0%, rgba(65, 109, 148, 1) 100%);
}

#floating nav ul li.btn a {
  display: flex;
  padding: 40px 0;
  height: auto;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2rem;
  font-weight: 500;
  border-radius: 10px 0 0 10px;
  color: #fff;
}

@media screen and (max-width: 1320px) {
  #floating {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
  }

  #floating nav ul {
    flex-direction: row;
    justify-content: space-around;
    gap: inherit;
    margin-bottom: 4px;
  }

  #floating nav ul li.btn {
    width: calc((100% - 10px)/2);
  }

  #floating nav ul li.btn a {
    padding: 20px 0;
    writing-mode: horizontal-tb;
    font-size: 1.6rem;
    border-radius: 4px;
  }
}

@media screen and (max-width: 560px) {
  #floating nav ul li.btn a {
    font-size: 1.4rem;
  }
}


/*********************
ARCHIVE
*********************/

/*card*/
.archive-card {
  background-color: #FFFFFF;
  border-radius: 5px;
  margin-right: 8%;
  margin-bottom: 2em;
}

.archive-card:nth-of-type(2n) {
  margin-right: 0%;
}

.archive-card a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
}

.archive-card a:hover {
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .1);
  opacity: 1;
}

.image-archive {
  width: 100%;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}

.image-archive>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s;
}

.archive-card:hover .image-archive>img {
  transform: scale(1.1);
}

.text-archive {
  color: #000000;
  padding: 1em;
  background-color: #FFFFFF;
}

.text-archive .time-archive {
  color: #777777;
  margin-bottom: 1em;
}

/*list*/
.archive-list {
  padding: 0 0.6em 1.8em;
  border-bottom: dotted 1px #D2DAE6;
  margin-bottom: 1.5em;
  transition: all 0.4s;
}

.archive-list:last-of-type {
  margin-bottom: 0;
}

.archive-list a {
  display: block;
  text-decoration: none;
}

.archive-list .time-archive {
  width: 15%;
  color: var(--main-color-1);
}

.archive-list .title-archive {
  width: 80%;
  color: var(--text-main);
  font-weight: var(--normal);
  margin: 0;
}


/*PAGENATION*/

/* リンクの枠 */
.navigation.pagination {
  margin-top: 4em;
}

.pagination .nav-links {}

/* 数字のリンク */
.pagination .page-numbers {
  color: var(--main-color-1);
  font-family: var(--font-en);
  font-weight: var(--normal);
  display: flex;
  justify-content: center;
  margin: 0;
}

.pagination .page-numbers li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1.2em;
}

.pagination .page-numbers li:first-of-type {
  margin-left: 0;
}

.pagination .page-numbers li:last-of-type {
  margin-right: 0;
}

.pagination .page-numbers a {
  text-decoration: none;
}

/* 前へ、次へボタン */
.pagination .nav-links .prev,
.pagination .nav-links .next {
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.pagination .nav-links .prev {
  background-image: url(../../uploads/arrow-left.svg);
}

.pagination .nav-links .next {
  background-image: url(../../uploads/arrow-right.svg);
}

/* ドット */
.pagination .nav-links .dots {}

/* 現在のページ */
.pagination .nav-links .current {
  text-decoration: underline;
}


@media only screen and (max-width: 560px) {
  .archive-list:last-child {
    margin-bottom: 1.5em;
  }

  .archive-list .time-archive {
    margin-right: 0;
    margin-bottom: .5em;
  }

  .archive-list .time-archive,
  .archive-list .title-archive {
    width: 100%;
  }
}



/*********************
SINGLE
*********************/
.header-single {
  position: relative;
  padding-top: 120px;
}

.time-single {
  display: inline-block;
  margin-bottom: .5em;
}

.title-single {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0;
}

.main-single-post h2 {
  font-size: 1.8em;
}

.main-single-post h3 {
  font-size: 1.5em;
}

.main-single-post h4 {
  font-size: 1.2em;
}

.main-single-post h2,
.main-single-post h3,
.main-single-post h4 {
  margin: 1em 0;
}

.main-single-post p+h2,
.main-single-post img+h2,
.main-single-post figure+h2,
.main-single-post table+h2 {
  margin-top: 3em;
}

.main-single-post p+h3,
.main-single-post img+h3,
.main-single-post figure+h3,
.main-single-post table+h3 {
  margin-top: 2em;
}

.main-single-post ul,
.main-single-post ol {
  margin: 2em 0;
}

.main-single-post figure,
.main-single-post img {
  display: block;
  max-width: 100%;
  margin: auto;
}

.main-single-post figure {
  margin-bottom: 2em;
}

.main-single-post figcaption {
  font-size: .8em;
  line-height: 1.7;
  margin-top: .5em;
}

.main-single-post table {
  border: solid 1px #DDD;
  border-collapse: collapse;
}

.main-single-post tr {
  border-bottom: solid 1px #DDD;
}

.main-single-post th,
.main-single-post td {
  padding: 1em;
  border-right: solid 1px #DDD;
}


@media only screen and (max-width: 560px) {
  .title-news {
    font-size: 1.9rem;
  }
}


/*********************
SECTION_ACCENT
*********************/
.section_accent {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.section_accent>.container-ll .image {
  min-width: 300px;
  margin-left: auto;
}

@media screen and (max-width: 560px) {
  #contact>.section_accent>.container-ll .image {
    min-width: 240px;
  }
}

/*********************
CONTACT
*********************/
#contact {
  position: relative;
  z-index: 1;
  padding: 260px 0 180px;
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 875px;
  background: url(../image/top/contact.jpg) center center/cover;
  z-index: -1;
  pointer-events: none;
}

#contact>.section_accent>.container-ll .image {
  width: 37.6%;
}

.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number {
  background-color: var(--main-color-1);
  font-weight: 700;
}

.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__text {
  color: var(--main-color-1);
  font-weight: 700;
}

.smf-complete-content {
  width: fit-content;
  margin: auto;
}

.smf-complete-content p {
  width: fit-content;
}

#autozip {
  display: none !important;
}

@media screen and (max-width: 960px) {
  #contact::before {
    background: url(../image/top/sp/contact_sp.jpg) center center/cover;
    height: 600px;
  }
}

#contact .container .contact_wrap {
  background-color: #fff;
}

#contact .container .contact_wrap>.container>p {
  width: fit-content;
  margin: auto;
}

form.snow-monkey-form {
  padding-top: 30px;
  font-size: 1.6rem;
}

#contact .smf-item__label__text {
  position: relative;
  padding-left: 2.8em;
}

#contact [data-screen=input] .smf-progress-tracker__item--input .smf-progress-tracker__item__number {
  background-color: var(--main-color-1);
}

#contact .smf-progress-tracker__item__number {
  height: 40px;
  width: 40px;
  font-size: 20px;
}

#contact .smf-item__label__text::after {
  position: absolute;
  content: "必須";
  color: #fff;
  width: 34px;
  height: 20px;
  top: 4px;
  left: 0;
  display: grid;
  place-items: center;
  background: #DD3234;
  border-radius: 4px;
  font-size: 12px;
}

#contact .privecypolicy {
  margin: 20px auto;
  max-width: 900px;
  background: #fff;
  padding: 40px;
  height: 300px;
  overflow: scroll;
  font-size: 14px;
  border: 1px solid #ccc;
}

#contact .privecypolicy .title {
  font-size: 20px;
  text-align: center;
}

#contact .privecypolicy>p {
  padding-top: 20px;
}

#contact .privecypolicy h3 {
  font-size: 18px;
  padding-top: 20px;
}

#contact .privecypolicy .text {
  padding-top: 10px;
}

#contact .privecypolicy ol {
  list-style: decimal;
  margin-left: 1.5em;
}

#contact .privecypolicy ol li {
  padding-top: 8px;
}

#contact .privecypolicy ol li>ol {
  list-style: none;
  text-indent: -1.5em;
}

#contact .privecypolicy ol li>ol li {
  padding-top: 8px;
  text-indent: 0;
}

#contact .privecypolicy ol li>ol li>ul {
  list-style: disc;
  margin-left: 1.5em;
  padding: 8px 0;
}

#contact .smf-placeholder[data-name="checkboxes-privacypolicy"] {
  text-align: center;
}

.smf-form--business+.smf-action {
  margin: 0;
}

.smf-form .smf-radio-button-control__control:checked,
.smf-form .smf-checkbox-control__control:checked {
  background-color: var(--main-color-1);
  border-color: var(--main-color-1);
}

.smf-action .smf-button-control__control {
  background-image: linear-gradient(45deg, rgba(0, 48, 91, 1) 0%, rgba(65, 109, 148, 1) 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  width: 400px;
  height: 80px;
  font-size: 1.2em;
  margin-top: 20px;
}

@media screen and (max-width: 1440px) {
  #contact {
    padding: 180px 0 180px;
  }
}

@media screen and (max-width: 960px) {
  #contact {
    padding: 120px 0 120px;
  }

  #contact .privecypolicy {
    padding: 20px;
    height: 240px;
  }
}

@media screen and (max-width: 560px) {
  #contact>.section_accent>.container-ll .image {
    width: 60%;
  }

  .smf-action .smf-button-control__control {
    width: 100%;
    max-width: 360px;
    height: 64px;
  }

  #contact .privecypolicy .title {
    font-size: 16px;
  }

  #contact .privecypolicy>p {
    padding-top: 10px;
  }

  #contact .privecypolicy h3 {
    font-size: 16px;
    padding-top: 20px;
  }
}

/*********************
PAGE PARTS
*********************/


/*privacy*/
.main-privacy h2 {
  font-size: 1.5em;
  margin: 2em 0 .5em;
}

/*********************
LOADING
*********************/
#loading,
#loading_logo {
  display: none;
}

.home #loading {
  background-color: #fff;
  display: block;
  position: fixed;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.home #loading_logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

#loading_logo img {
  width: 210px;
}


/*********************
COLOR
**********************/
.bg-base {
  background-color: var(--base);
}

.bg-main-color-1 {
  background-color: var(--main-color-1);
}

.bg-accent-color-1 {
  background-color: var(--accent-color-1);
}

.color-base {
  color: var(--base);
}

.color-main-1 {
  color: var(--main-color-1);
}

.color-accent-1 {
  color: var(--accent-color-1);
}

.white {
  color: #fff;
}

/*********************
MARGIN
*********************/
.margin-top-1 {
  margin-top: 180px;
}

.margin-top-2 {
  margin-top: 160px;
}

.margin-top-3 {
  margin-top: 100px;
}

.margin-top-4 {
  margin-top: 60px;
}

.margin-top-5 {
  margin-top: 40px;
}

.margin-top-6 {
  margin-top: 20px;
}

@media only screen and (max-width: 560px) {
  .margin-top-1 {
    margin-bottom: 150px;
  }

  .margin-top-2 {
    margin-bottom: 90px;
  }

  .margin-top-3 {
    margin-bottom: 60px;
  }

  .margin-top-4 {
    margin-bottom: 50px;
  }

  .margin-top-5 {
    margin-bottom: 30px;
  }
}

/*********************
padding
*********************/
.padding-top-1 {
  padding-top: 180px;
}

.padding-top-2 {
  padding-top: 120px;
}

.padding-top-3 {
  padding-top: 100px;
}

.padding-top-4 {
  padding-top: 60px;
}

.padding-top-5 {
  padding-top: 40px;
}

.padding-top-6 {
  padding-top: 20px;
}

.padding-bottom-1 {
  padding-bottom: 180px;
}

.padding-bottom-2 {
  padding-bottom: 120px;
}

.padding-bottom-3 {
  padding-bottom: 100px;
}

.padding-bottom-4 {
  padding-bottom: 60px;
}

.padding-bottom-5 {
  padding-bottom: 40px;
}

.padding-bottom-6 {
  padding-bottom: 20px;
}

@media only screen and (max-width: 960px) {
  .padding-top-1 {
    padding-top: 120px;
  }

  .padding-top-2 {
    padding-top: 90px;
  }

  .padding-top-3 {
    padding-top: 80px;
  }

  .padding-top-4 {
    padding-top: 50px;
  }

  .padding-top-5 {
    padding-top: 30px;
  }

  .padding-bottom-1 {
    padding-bottom: 120px;
  }

  .padding-bottom-2 {
    padding-bottom: 90px;
  }

  .padding-bottom-3 {
    padding-bottom: 80px;
  }

  .padding-bottom-4 {
    padding-bottom: 50px;
  }

  .padding-bottom-5 {
    padding-bottom: 30px;
  }
}


/*********************
ANIMATION
*********************/
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition-property: transform, opacity;
  transition-duration: 1.5s;
  transition-delay: 0s;
}

.fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}

.delay--2 {
  transition-delay: .3s;
}

.delay--3 {
  transition-delay: .6s;
}

.delay--4 {
  transition-delay: .9s;
}


@media only screen and (min-width: 561px) {}

/*********************
RESPONSIVE
*********************/
@media only screen and (min-width: 961px) {
  .tb_only {
    display: none !important;
  }

  .sp_only {
    display: none !important;
  }

  .sp_tb {
    display: none !important;
  }
}

@media only screen and (min-width: 561px) and (max-width: 960px) {
  .pc_only {
    display: none !important;
  }

  .sp_only {
    display: none !important;
  }

  .sp_pc {
    display: none !important;
  }
}

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

  .tb_only {
    display: none !important;
  }

  .tb_pc {
    display: none !important;
  }
}

@media only screen and (max-width: 320px) {
  html {
    font-size: .58em;
  }
}