@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 10px;
}

body {
  /* プロジェクトによって変動 */
  background-color: #FFF;
  color: #333333;
  line-height: 1.8;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-variant-numeric: tabular-nums;
  /* safari hover対策 */
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
  line-height: 1;
}

button {
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

select {
  color: #333;
}

@media screen and (max-width: 650px) {
  html {
    /* 1rem = 50pxと再定義 */
    font-size: 5px;
  }
  body {
    font-size: 2.8rem;
  }
  h1 {
    font-size: 8rem;
  }
  h2 {
    font-size: 4rem;
  }
  h3 {
    font-size: 3.6rem;
  }
  h4 {
    font-size: 3.6rem;
  }
}
/* ///////////////////////////////////////

背景色・テキストカラー

/////////////////////////////////////// */
/* ///////////////////////////////////////

フォント

/////////////////////////////////////// */
/* ///////////////////////////////////////

ボーダー

/////////////////////////////////////// */
/* ///////////////////////////////////////

ボックスシャドウ

/////////////////////////////////////// */
/* ///////////////////////////////////////




アニメーション




/////////////////////////////////////// */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(30px);
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(30px);
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger,
.fadeUpTrigger,
.fadeRightTrigger,
.fadeLeftTrigger {
  opacity: 0;
}

.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime; /*アニメーションの定義名*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

/*アニメーションの開始から終了までを指定する*/
@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 0.5s ease-out forwards;
          animation: text_anime_on 0.5s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomInAnime {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ///////////////////////////////////////




共通




/////////////////////////////////////// */
body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
body a {
  text-decoration: none;
  cursor: pointer;
}

/* ///////////////////////////////////////




画面幅




/////////////////////////////////////// */
.large_container {
  max-width: 1360px;
  width: 90%;
  margin: auto;
}

.container {
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
}

.mid_container {
  max-width: 920px;
  width: 90%;
  margin: 0 auto;
}

.sm_container {
  max-width: 600px;
  width: 90%;
  margin: auto;
}

/* ///////////////////////////////////////




背景色




/////////////////////////////////////// */
.bg_01 {
  background-color: #EFF8FA;
  border-radius: 0 15rem 0 0;
}

.bg_02 {
  background: linear-gradient(150deg, #017EC1 0%, #0193C6 51%, #0138B6 100%);
  border-radius: 15rem 0 0 0;
}

/* ///////////////////////////////////////




フレックス




/////////////////////////////////////// */
.fl {
  display: flex;
  gap: 4rem;
}

.al_center {
  align-items: center;
}

.js_sb {
  justify-content: space-between;
}

@media screen and (max-width: 980px) {
  .fl {
    flex-direction: column;
  }
  .fd_row {
    flex-direction: row !important;
  }
}
/* ///////////////////////////////////////




余白・改行




/////////////////////////////////////// */
.mt_100 {
  margin-top: 10rem;
}

.mt_60 {
  margin-top: 6rem;
}

.mt_40 {
  margin-top: 4rem;
}

.mt_24 {
  margin-top: 2.4rem;
}

.mt_16 {
  margin-top: 1.6rem;
}

.ptb_100 {
  padding: 10rem 0 10rem 0;
}

.pb_100 {
  padding-bottom: 10rem;
}

.indent {
  text-indent: -1em !important;
  padding-left: 1em !important;
}

.center {
  text-align: center;
}

.fw_mid {
  font-weight: 500;
}

@media screen and (max-width: 650px) {
  .pc_none {
    display: inline-block;
  }
  .bg_01 {
    border-radius: 0 15rem 0 0;
  }
  .bg_02 {
    border-radius: 15rem 0 0 0;
  }
}
.grad {
  background: -webkit-linear-gradient(270deg, #017EC1 0%, #0193C6 50%, #0138B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Quicksand", sans-serif;
}

/* ///////////////////////////////////////




ボタン



/////////////////////////////////////// */
.btn {
  width: 250px;
  height: 50px;
  line-height: 1.7;
  background: #E9A69E;
  color: #FFFFFF;
  border-radius: 999px;
  display: block;
  box-sizing: border-box;
  font-weight: 700;
  position: relative;
  font-size: 1.8rem;
  text-align: center;
  line-height: 2.6;
  transition: 0.5s;
  margin: auto;
}
.btn::after {
  content: "";
  display: inline-block;
  background-image: url(../images/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.btn:hover {
  transform: scale(0.95);
}

@media screen and (max-width: 650px) {
  .btn {
    width: 200px;
    height: 45px;
    font-size: 3.2rem;
    line-height: 2.8;
  }
  .btn::before {
    width: 25px;
    height: 25px;
  }
}
/* ///////////////////////////////////////




コンテンツのタイトル




/////////////////////////////////////// */
.con_ttl {
  text-align: center;
}
.con_ttl h2 {
  font-size: 3.2rem;
  position: relative;
  display: inline-block;
  z-index: 0;
}
.con_ttl h2::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFF9F8;
  position: absolute;
  left: -20px;
  top: 2px;
  z-index: -1;
}
.con_ttl p {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #E9A69E;
}

.con_ttl_white h2::before {
  background-color: #FFFFFF;
}

@media screen and (max-width: 650px) {
  .con_ttl {
    text-align: center;
  }
  .con_ttl h2 {
    font-size: 4.8rem;
  }
  .con_ttl h2::before {
    width: 45px;
    height: 45px;
  }
  .con_ttl p {
    font-size: 2.8rem;
  }
}
/* ///////////////////////////////////////




コンタクトフォーム




/////////////////////////////////////// */
.contact_form {
  overflow: hidden;
  padding-top: 35rem;
}
.contact_form .con_ttl {
  color: #FFFFFF;
}
.contact_form .con_ttl h2::before {
  background-color: #F1C6C1;
}
.contact_form .con_ttl p {
  color: #FFFFFF;
}

.cta_bg {
  background-color: #E9A69E;
  position: relative;
  padding-bottom: 10rem;
}
.cta_bg::before {
  content: "";
  display: inline-block;
  background-color: #E9A69E;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  position: absolute;
  width: 100%;
  height: 450px;
  top: -138px;
  left: 0;
  z-index: -1;
}
.cta_bg::after {
  content: "";
  display: inline-block;
  background: url(../images/illust.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 280px;
  position: absolute;
  top: -315px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.form {
  background-color: #FFFFFF;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 8rem 8rem 4rem 8rem;
}
.form h3 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
}

.select {
  width: 320px;
  position: relative;
  overflow: hidden;
  height: 65px;
  box-sizing: border-box;
}
.select p {
  background-color: transparent;
  height: 100%;
}

.select::before {
  content: "";
  width: 10px;
  height: 5px;
  background-image: url(../images/arrow02.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.box {
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  background-color: #FFF9F8;
  line-height: 1;
  border-radius: 1rem;
  font-weight: 700;
}

.box::-ms-expand {
  display: none;
}

.contact_form .must,
.contact_form .any {
  color: #FFFFFF;
  margin-right: 5px;
  font-weight: 500;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
}

.contact_form .must {
  background-color: #E9A69E;
}

.contact_form .any {
  background-color: #B1B1B1;
}

.contact_form dl {
  display: flex;
}
.contact_form dl:not(:last-of-type) {
  align-items: center;
}
.contact_form dl dt {
  width: 30%;
  font-weight: 500;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
}
.contact_form dl dd {
  width: 70%;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}

.contact_form dl:not(:first-of-type) {
  margin-top: 4rem;
}

span.wpcf7-list-item {
  display: block;
  margin: 0;
}

input.wpcf7-form-control.wpcf7-text {
  width: 100%;
  border-radius: 2px;
  border: none;
  height: 65px;
  font-size: 14px;
  box-sizing: border-box;
  padding: 1.5rem;
  background-color: #FFF9F8;
  border-radius: 1rem;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  height: 300px;
  border: none;
  padding: 1.5rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  background-color: #FFF9F8;
  border-radius: 1rem;
}

::-moz-placeholder {
  color: #D2D2D2;
}

:-ms-input-placeholder {
  color: #D2D2D2;
}

::placeholder {
  color: #D2D2D2;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #D2D2D2;
}

/* IE対応 */
:-ms-input-placeholder {
  color: #D2D2D2;
}

input:focus {
  outline: 1px solid #E9A69E;
}

textarea:focus {
  outline: 1px solid #E9A69E;
}

.submit_btn {
  margin: 6rem 0;
  display: block;
  text-align: center;
}

input.wpcf7-form-control.wpcf7-submit {
  background: #E9A69E;
  height: 50px;
  width: 250px;
  border-radius: 999px;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  transition: 0.5s;
  text-align: center;
  padding: 0;
}
input.wpcf7-form-control.wpcf7-submit:hover {
  opacity: 0.7;
  transform: scale(0.95);
}

.wpcf7-spinner {
  display: none !important;
}

.privacy_policy_box {
  height: 270px;
  width: 100%;
  padding: 2.5rem;
  box-sizing: border-box;
  overflow-y: scroll;
  margin-top: 1.6rem;
  background-color: #FFF9F8;
  border-radius: 1rem;
  font-size: 1.4rem;
}
.privacy_policy_box .bold {
  font-weight: 700;
}
.privacy_policy_box ul {
  padding-left: 1.5em;
}
.privacy_policy_box ul > li {
  list-style: disc !important;
}

.margin_top {
  margin-top: 2.4rem;
}

.checkbox_wrap {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
}
.checkbox_wrap p {
  font-weight: 700;
}

.privacy_policy_box {
  margin-top: 4rem;
}
.privacy_policy_box .bold {
  margin: 10px 0 5px 0;
}

.privacy_policy_box::-webkit-scrollbar {
  width: 16px;
}

.privacy_policy_box::-webkit-scrollbar-thumb {
  background: #E9A69E;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  background-clip: padding-box;
  border-radius: 999px;
}

.privacy_policy_box::-webkit-scrollbar-track {
  background: transparent;
  margin-top: 5px;
  margin-bottom: 5px;
}

.checkbox_wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.checkbox_wrap span.wpcf7-list-item {
  margin: 0 0 0 0; /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
  text-align: center;
}

.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
  position: relative;
  font-weight: 700;
}

.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
}

input[type=checkbox] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}

.wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #333333;
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  vertical-align: middle;
}

.first {
  margin-top: 0 !important;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background: url("../images/check.png") no-repeat center;
  background-size: contain;
  content: "";
  width: 16px;
  height: 16px;
  left: 3px;
  position: absolute;
  top: 5px;
}

p.checkbox_txt {
  font-weight: 400;
}

@media screen and (max-width: 980px) {
  .contact_form {
    padding-top: 25rem;
  }
  .cta_bg::after {
    width: 95%;
    height: 150px;
    top: -232px;
  }
  .form {
    border-radius: 15px;
    padding: 8rem 4rem 4rem 4rem;
  }
  .contact_form dl {
    flex-direction: column;
    gap: 12px;
  }
  .contact_form dl dt {
    width: 100%;
  }
  .contact_form dl dd {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .contact_form {
    padding-top: 28rem;
  }
  .cta_bg::before {
    height: 250px;
    top: -50px;
  }
  .cta_bg::after {
    height: 105px;
    width: 95%;
    top: -115px;
  }
  .form h3 {
    font-size: 3.2rem;
  }
  .contact_form .must, .contact_form .any {
    font-size: 12px;
    padding: 2px 10px;
  }
  .select {
    width: 100%;
    height: 45px;
  }
  .select::before {
    width: 12px;
    height: 6px;
    right: 10px;
  }
  .select .box {
    font-size: 2.8rem;
  }
  .select p {
    height: 100%;
  }
  .form h3 {
    font-size: 3.2rem;
  }
  input.wpcf7-form-control.wpcf7-text {
    height: 45px;
    font-size: 2.8rem;
    padding: 14px 10px;
  }
  textarea.wpcf7-form-control.wpcf7-textarea {
    height: 160px;
    padding: 2rem;
    font-size: 2.8rem;
  }
  .contact_form dl:not(:first-of-type) {
    margin-top: 4rem;
  }
  .privacy_policy_box {
    height: 180px;
    padding: 2rem;
    margin-top: 2.4rem;
    font-size: 12px;
  }
  p.privacy_policy {
    margin-top: 4rem;
  }
  .checkbox_wrap {
    margin-top: 2rem;
    align-items: flex-start;
  }
  input.wpcf7-form-control.wpcf7-submit {
    font-size: 3.2rem;
    height: 45px;
    width: 200px;
    line-height: 1.9;
  }
  .checkbox_wrap .wpcf7-list-item-label::before {
    width: 15px;
    height: 15px;
  }
  input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    width: 12px;
    height: 12px;
    left: 3px;
    top: 5px;
  }
  .contact_form .center {
    margin-top: 10rem;
  }
  .checkbox_wrap {
    margin-top: 2.4rem;
  }
}
/* ///////////////////////////////////////




フッター




/////////////////////////////////////// */
.footer_item {
  justify-content: space-between;
  align-items: center;
  padding: 6rem 0;
}
.footer_item .logo {
  width: 185px;
  height: auto;
}
.footer_item .logo img {
  width: 100%;
  height: auto;
}
.footer_item ul {
  gap: 2.4rem;
}
.footer_item ul li {
  font-weight: 500;
  transition: 0.5s;
}
.footer_item ul li:hover {
  color: #E9A69E;
}

.copy {
  font-size: 12px;
  font-weight: 500;
  background-color: #FFF9F8;
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid #E9A69E;
}

@media screen and (max-width: 980px) {
  .footer_item {
    align-items: flex-start;
  }
  .footer_item ul {
    gap: 4rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 650px) {
  .copy {
    padding: 2rem;
  }
}
/* ///////////////////////////////////////




メインビジュアル




/////////////////////////////////////// */
.mv_wrap {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 50%, #FFF9F8 50%, #FFF9F8 100%);
  height: 700px;
  margin: 9rem auto 0 auto;
}

.mv {
  height: 100%;
  width: 95%;
  background-image: url(../images/mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 2rem;
  position: relative;
  margin: auto;
}

.mv h1 {
  color: #FFFFFF;
  font-size: 4.8rem;
  position: absolute;
  left: 5%;
  bottom: 8rem;
}
.mv h1 span {
  display: inline-block;
  background-color: #E9A69E;
  padding: 2rem 4rem;
  border-radius: 2rem;
  margin-top: 2rem;
}
.mv h1 .pc_none {
  display: contents;
}
.mv h1 br.pc_none {
  display: none;
}

/* ///////////////////////////////////////




経営理念




/////////////////////////////////////// */
.vision {
  position: relative;
  overflow: hidden;
}
.vision .bg {
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  background-color: #FFF9F8;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.vision h3 {
  font-size: 3.2rem;
  text-align: center;
}
.vision h3 span {
  color: #E9A69E;
}
.vision h3 .pc_none {
  display: none;
}

.vision .txt {
  margin-top: 2.4rem;
  text-align: center;
  line-height: 2.4;
}

/* ///////////////////////////////////////




サービス




/////////////////////////////////////// */
.sev .fl > img {
  border-radius: 2rem;
  width: 45%;
}
.sev > .fl {
  gap: 4rem;
}

.sev .item_wrap {
  flex: 1;
}
.sev .item_wrap .sev_list {
  gap: 10px;
  align-items: center;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #D5D5D5;
}
.sev .item_wrap .sev_list:not(:first-of-type) {
  margin-top: 2.4rem;
}
.sev .item_wrap .sev_list .icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.sev .item_wrap .sev_list .icon img {
  width: 100%;
  height: auto;
}
.sev .item_wrap .sev_list h3 {
  font-size: 16px;
  font-weight: 700;
  color: #E9A69E;
  font-family: "Quicksand", sans-serif;
}
.sev .item_wrap .sev_list p {
  font-weight: 700;
  font-size: 2.4rem;
  margin-top: 5px;
}
.sev .item_wrap .txt {
  color: #E9A69E;
  font-weight: 700;
  font-size: 2rem;
}

/* ///////////////////////////////////////




代表挨拶




/////////////////////////////////////// */
.msg {
  background-color: #FFF9F8;
}

.msg_wrap img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.msg_wrap h3 {
  font-size: 3.2rem;
}
.msg_wrap h3 span {
  color: #E9A69E;
}
.msg_wrap h3 .sp_none {
  display: block;
  color: #333333;
}

.msg_wrap .fl {
  gap: 6rem;
}
.msg_wrap .fl .txt_wrap {
  flex: 1;
}
.msg_wrap .fl .txt_wrap p {
  line-height: 2.4;
}
.msg_wrap .fl .txt_wrap .name {
  text-align: right;
  font-size: 2rem;
  font-weight: 500;
}
.msg_wrap .fl .txt_wrap .name span {
  font-size: 12px;
  display: inline-block;
  margin-right: 1em;
}

/* ///////////////////////////////////////




会社概要




/////////////////////////////////////// */
.co dl .fl {
  position: relative;
}
.co dl .fl:not(:last-of-type) {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #D5D5D5;
}
.co dl .fl:not(:last-of-type)::before {
  content: "";
  display: inline-block;
  width: 20%;
  height: 1px;
  background-color: #E9A69E;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.co dl .fl:not(:first-of-type) {
  padding-top: 2.4rem;
}
.co dl .fl .child {
  width: 80%;
}
.co dl .fl dt {
  width: 20%;
  font-weight: 700;
  color: #E9A69E;
}
.co dl .fl dd {
  width: 100%;
}
.co dl .fl dd span {
  display: inline-block;
  margin-left: 2rem;
}
.co dl .fl .map {
  margin-top: 2.4rem;
  border-radius: 2rem;
  background-color: #E9A69E;
  position: relative;
  height: 345px;
}
.co dl .fl .map iframe {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 2rem;
  position: absolute;
  height: 345px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

/* ///////////////////////////////////////




お知らせ




/////////////////////////////////////// */
.news_bg {
  max-width: 1360px;
  width: 90%;
  margin: auto;
  box-sizing: border-box;
  background-color: #FFF9F8;
  border-radius: 20px;
  border: 5px solid #F1C6C1;
}

.news_listWrap {
  gap: 4rem;
}

.news_list {
  width: calc((100% - 8rem) / 3);
}
.news_list .thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 32/21;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.news_list .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news_list {
  position: relative;
  transition: 0.5s;
}
.news_list .date {
  background-color: #FFFFFF;
  border-radius: 2.5rem 0 0 0;
  display: inline-block;
  color: #E9A69E;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 15px 20px;
  line-height: 1;
}
.news_list .day {
  font-weight: 700;
  font-size: 20px;
  margin-top: 5px;
}
.news_list .year {
  font-size: 12px;
}
.news_list h3 {
  font-size: 1.6rem;
  margin-top: 1.6rem;
  font-weight: 500;
}
.news_list a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.news_list:hover {
  transform: scale(0.95);
  opacity: 0.8;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  メインビジュアル




  /////////////////////////////////////// */
  .mv h1 {
    font-size: clamp(32px, 4.08vw, 40px);
    bottom: 6rem;
  }
  /* ///////////////////////////////////////




  サービス




  /////////////////////////////////////// */
  .sev .item_wrap .sev_list {
    flex-direction: row;
  }
  .sev .item_wrap {
    width: 100%;
  }
  .sev .fl > img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 7/5;
  }
  /* ///////////////////////////////////////




  代表挨拶




  /////////////////////////////////////// */
  .msg_wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 7/4;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 40% 0;
       object-position: 40% 0;
  }
  .msg_wrap h3 .sp_none {
    display: inline-block;
  }
  .msg_wrap .fl {
    align-items: flex-start;
  }
  .msg_wrap .fl .txt_wrap {
    width: 100%;
  }
  /* ///////////////////////////////////////




  会社概要




  /////////////////////////////////////// */
  .co dl .fl {
    flex-direction: row;
  }
  /* ///////////////////////////////////////




  お知らせ




  /////////////////////////////////////// */
  .news_list {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  メインビジュアル




  /////////////////////////////////////// */
  .mv_wrap {
    margin: 12rem auto 0 auto;
    height: 500px;
  }
  .mv {
    background-position: 77% 52%;
    border-radius: 15px;
  }
  .mv h1 {
    font-size: clamp(20px, 6.15vw, 24px);
    bottom: 6rem;
  }
  .mv h1 span {
    display: inline-block;
    background-color: #E9A69E;
    padding: 2rem 4rem;
    border-radius: 2rem;
    margin-top: 2rem;
  }
  .mv h1 .sp_none {
    display: contents;
  }
  .mv h1 .pc_none {
    display: inline-block;
  }
  .mv h1 br.pc_none {
    display: block;
  }
  /* ///////////////////////////////////////




  経営理念




  /////////////////////////////////////// */
  .vision h3 {
    font-size: 4rem;
  }
  .vision h3 .pc_none {
    display: block;
  }
  .vision .txt {
    margin-top: 3.2rem;
  }
  /* ///////////////////////////////////////




  サービス




  /////////////////////////////////////// */
  .sev .item_wrap .sev_list {
    padding-bottom: 2rem;
  }
  .sev .item_wrap .sev_list h3 {
    font-size: 2.8rem;
  }
  .sev .item_wrap .sev_list p {
    font-size: 4rem;
  }
  .sev .item_wrap .txt {
    font-size: 2.8rem;
  }
  /* ///////////////////////////////////////




  代表挨拶




  /////////////////////////////////////// */
  .msg_wrap h3 {
    font-size: 4rem;
  }
  .msg_wrap .fl .txt_wrap .name {
    font-size: 3.2rem;
  }
  /* ///////////////////////////////////////




  会社概要




  /////////////////////////////////////// */
  .co dl .fl .map {
    height: 140px;
  }
  .co dl .fl .map iframe {
    height: 140px;
    padding: 3px;
  }
  .co dl .fl dd span {
    display: block;
    margin: 0;
  }
  .co dl .fl:not(:last-of-type) {
    padding-bottom: 2rem;
  }
  /* ///////////////////////////////////////




  News




  /////////////////////////////////////// */
  .bg {
    border-radius: 15px;
  }
  .news_list .date {
    border-radius: 4rem 0 0 0;
  }
  .news_list h3 {
    font-size: 3.2rem;
    margin-top: 2rem;
  }
}
/* ///////////////////////////////////////




ヘッダー




/////////////////////////////////////// */
.global_nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 999;
  box-sizing: border-box;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 95%;
  padding: 20px 0 20px 0;
}
.global_nav .logo {
  width: 185px;
  display: inline-block;
}
.global_nav .logo img {
  width: 100%;
  height: auto;
}

.global_nav nav {
  margin-left: auto;
}

.pc_menu ul {
  gap: 2.4rem;
}
.pc_menu ul li {
  text-align: center;
  font-weight: 500;
  transition: 0.5s;
}
.pc_menu ul li:hover {
  transform: scale(0.9);
  opacity: 0.8;
}
.pc_menu ul li span {
  display: block;
  font-size: 12px;
  color: #E9A69E;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}
.pc_menu ul .cta_btn {
  width: 40px;
  height: 40px;
  border: 3px solid #FFF9F8;
  border-radius: 16px;
  background-color: #E9A69E;
}
.pc_menu ul .cta_btn img {
  width: 20px;
  height: auto;
}

.global_nav .pc_menu {
  display: flex;
  gap: 3.2rem;
  flex: auto;
  align-items: center;
}

.sp_menu {
  display: none;
}

@media screen and (max-width: 1200px) {
  /* ///////////////////////////////////////




  ヘッダー




  /////////////////////////////////////// */
  .global_nav .pc_menu {
    display: none;
  }
  .sp_menu {
    position: fixed;
    z-index: 997;
    /*ナビのスタート位置と形状*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF9F8;
    box-sizing: border-box;
    padding: 15rem 6rem 0 6rem;
    border-radius: 0 0 5px 5px;
  }
  .sp_menu.show {
    display: block;
    -webkit-animation: fade-in 0.5s;
            animation: fade-in 0.5s;
  }
  @-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 0.8;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 0.8;
    }
  }
  .nav_menu_li {
    border-bottom: dotted 3px var(--main-color);
    padding: 2.4rem;
  }
  .global_nav {
    padding: 7px 15px 7px 15px;
    height: auto;
    top: 2rem;
  }
  /* ハンバーガーメニュー３本線 */
  .nav_toggle {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    width: 3rem;
    height: 2.4rem;
    z-index: 999;
    background-color: #E9A69E;
    width: 40px;
    height: 40px;
    border-radius: 16px;
    border: 3px solid #FFF9F8;
  }
  .nav_toggle i {
    display: block;
    width: 15px;
    height: 2px;
    background-color: #FFFFFF;
    position: absolute;
    transition: transform 0.5s, opacity 0.5s;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .nav_toggle i:nth-child(1) {
    top: 13px;
  }
  .nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 13px;
  }
  /* .showクラスがついた時の挙動 */
  .nav_toggle.show i:nth-child(1) {
    transform: translateY(6px) rotate(-45deg);
    left: 13px;
  }
  .nav_toggle.show i:nth-child(2) {
    opacity: 0;
  }
  .nav_toggle.show i:nth-child(3) {
    transform: translateY(-5px) rotate(45deg);
    left: 13px;
    bottom: 14px;
  }
  .sp_menu {
    padding: 18rem 3rem 0 3rem;
  }
  .sp_menu li {
    font-weight: 500;
  }
  .sp_menu li:not(:first-child) {
    padding-top: 2rem;
  }
  .sp_menu li:not(:last-child) {
    padding-bottom: 2rem;
    border-bottom: 1px solid #E9A69E;
  }
  .sp_menu li a {
    display: block;
  }
  .sp_menu li span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    color: #E9A69E;
  }
}
@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  ヘッダー




  /////////////////////////////////////// */
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  ヘッダー




  /////////////////////////////////////// */
  .global_nav {
    padding: 0;
  }
  .global_nav .logo {
    width: 148px;
  }
  .nav_toggle {
    width: 35px;
    height: 35px;
    right: 0;
  }
  .nav_toggle i:nth-child(1) {
    top: 11px;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 11px;
  }
  .nav_toggle.show i:nth-child(1) {
    left: 10px;
  }
  .nav_toggle.show i:nth-child(3) {
    left: 10px;
    bottom: 11px;
  }
}
.page_mv {
  max-width: 1360px;
  width: 90%;
  margin: 9rem auto 0 auto;
  box-sizing: border-box;
  background-color: #FFF9F8;
  border: 5px solid #F1C6C1;
  border-radius: 20px;
  padding: 6rem 0;
  text-align: center;
}
.page_mv p {
  font-weight: 700;
  font-size: 3.2rem;
  color: #E9A69E;
  font-family: "Quicksand", sans-serif;
  line-height: 1;
}
.page_mv h1 {
  font-size: 4.8rem;
  line-height: 1;
  margin-top: 5px;
}
.page_mv .ttl {
  font-size: 4.8rem;
  line-height: 1;
  margin-top: 5px;
  color: #333333;
}

/* ///////////////////////////////////////




記事ページ




/////////////////////////////////////// */
.news_post {
  padding-bottom: 10rem;
}
.news_post .container {
  max-width: 850px;
  width: 90%;
}

.news_post .fl {
  align-items: center;
  gap: 1rem;
}
.news_post .fl .date {
  color: #E9A69E;
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.news_post .fl .cat {
  color: #FFFFFF;
  background-color: #E9A69E;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
}
.news_post h1 {
  font-size: 2.8rem;
  margin-top: 1.6rem;
  line-height: 1.4;
}

.news_content h2 {
  font-size: 2.4rem;
  color: #E9A69E;
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 1.6rem;
  position: relative;
  margin-top: 4rem;
  color: #E9A69E;
}
.news_content h2::before {
  content: "";
  display: inline-block;
  width: 15%;
  height: 1px;
  background-color: #E9A69E;
  left: 0;
  bottom: -1px;
  position: absolute;
}
.news_content p:not(:first-of-type) {
  margin-top: 2.4rem;
}
.news_content h3, .news_content h4, .news_content h5, .news_content h6 {
  font-size: 2rem;
  background-color: #FFF9F8;
  color: #E9A69E;
  box-sizing: border-box;
  padding: 1.5rem 2rem;
  border-left: 10px solid #E9A69E;
  border-radius: 5px;
  margin-top: 4rem;
}
.news_content img {
  width: 100%;
  height: auto;
  margin-top: 4rem;
  border-radius: 2rem;
}

.news_contentWrap .btn {
  margin-top: 10rem;
}

.return {
  display: block;
  background-color: #E9A69E;
  color: #FFFFFF;
  width: 250px;
  height: 50px;
  font-weight: 700;
  font-size: 1.8rem;
  border-radius: 999px;
  margin: 10rem auto 0 auto;
  text-align: center;
  line-height: 2.6;
  position: relative;
  transition: 0.5s;
}
.return::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/arrow03.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.return:hover {
  transform: scale(0.95);
}

@-webkit-keyframes img_slide2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(-60px);
    opacity: 0;
  }
  41% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes img_slide2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(-60px);
    opacity: 0;
  }
  41% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ///////////////////////////////////////




記事一覧ページ




/////////////////////////////////////// */
.post .fl {
  flex-wrap: wrap;
}

.pagination {
  margin-top: 8rem;
}

.nav-links {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

span.page-numbers.current {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #E9A69E;
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

a.page-numbers {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #FFF9F8;
  border-radius: 50%;
  color: #E9A69E;
  border: #E9A69E 1px solid;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

a.prev.page-numbers,
a.next.page-numbers {
  background-color: #FFF9F8;
  color: #E9A69E;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0 2.4rem;
  box-sizing: content-box;
  border: 1px solid #E9A69E;
  height: 30px;
  line-height: 2.1;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  記事ページ




  /////////////////////////////////////// */
  .news_post .fl {
    flex-direction: row;
  }
  /* ///////////////////////////////////////




  記事一覧ページ




  /////////////////////////////////////// */
  .news_list {
    flex-direction: row;
  }
  .news_list .news_head {
    flex-direction: row;
  }
}
@media screen and (max-width: 650px) {
  .page_mv {
    margin-top: 16rem;
  }
  .page_mv p {
    font-size: 3.6rem;
  }
  .page_mv h1 {
    font-size: 5.6rem;
  }
  .page_mv .ttl {
    font-size: 5.6rem;
  }
  /* ///////////////////////////////////////




  記事ページ




  /////////////////////////////////////// */
  .news_post .fl .date {
    font-size: 12px;
  }
  .news_post h1 {
    font-size: 4rem;
    margin-top: 2rem;
  }
  .news_content h2 {
    font-size: 3.6rem;
  }
  .news_content h3, .news_content h4, .news_content h5, .news_content h6 {
    font-size: 3.2rem;
    padding: 10px;
    border-left: 6px solid #E9A69E;
  }
  .return {
    font-size: 3.2rem;
    width: 200px;
    height: 45px;
  }
  .return::before {
    width: 25px;
    height: 25px;
  }
  /* ///////////////////////////////////////




  記事一覧ページ




  /////////////////////////////////////// */
  .post .news_list h3 {
    font-size: 3.2rem;
  }
  span.page-numbers.current,
a.page-numbers {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  a.prev.page-numbers, a.next.page-numbers {
    height: 25px;
    padding: 0 13px;
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */