@charset "UTF-8";

/* Body177行から */

@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  line-height: calc(0.25rem + 1em + 0.25rem);
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-inline-size: 0;
  border-style: solid;
  border-width: 0;
}

*:where(:not(fieldset, progress, meter)) {
  background-repeat: no-repeat;
  background-origin: border-box;
  border-style: solid;
  border-width: 0;
}

:where(html) {
  block-size: 100%;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  line-height: 1.5;
  text-align: start;
  word-break: normal;
  overflow-wrap: anywhere;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  line-break: strict;
  hanging-punctuation: first last allow-end;
}

:where(html):where(:lang(ja)) {
  -webkit-font-kerning: none;
          font-kerning: none;
}

:where(body) {
  min-block-size: 100svb;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(svg) {
  fill: currentcolor;
  stroke: none;
}

:where(svg):where(:not([fill])) {
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  font: inherit;
  font-size: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

h1 {
  font-size: 2em;
}

:where(ul, ol) {
  list-style-position: inside;
  list-style: none;
}

:where(ul, ol)[role=list] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  width: 98%;

}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    -webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

:where(input[type=file])::-webkit-file-upload-button {
  text-align: center;
  -webkit-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  text-align: center;
  -webkit-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  background-color: #fff;
    border: 1px solid #333;
    border-radius: 5px;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

submit{
  background-color: #fff;
}


body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

.top-wrapper{
  padding: 0;
  margin: 0;
}

/*==================================================
　5-2-8 3本線が横方向に回転して×に
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
  position: fixed;/*ボタン内側の基点となるためrelativeを指定*/
  z-index: 9999;/*ボタンを最前面に*/
  top:5px;
  right: 10px;
  background:#7fd0ee;
  cursor: pointer;
  width: 50px;
  height:50px;
  border-radius: 5px;
}

/* 500px以上 */
/* @media (width >= 500px) {
  .openbtn{
    display: none;
  }
} */


/*ボタン内側*/
.openbtn .openbtn-area{
    transition: all .6s;/*アニメーションの設定*/
    width:50px;
    height:50px;
}

.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 8px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 35px;
  }

.openbtn span:nth-of-type(1) {
   top:10px; 
}

.openbtn span:nth-of-type(2) {
   top:23px;
}

.openbtn span:nth-of-type(3) {
   top:36px;
}

/*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
.openbtn.active .openbtn-area{
   transform: rotate(360deg);
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 9995;
  /*ナビのスタート位置と形状*/
  top:0;
  right: -120%;
  width:100%;
  height: 100vh;/*ナビの高さ*/
  background:#fff;
    /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
  width: 50%; /* 画面の半分の幅に設定 */
  background: rgba(255,255,255,0.9); /* 背景色を設定 */
  box-shadow: -2px 0 4px rgba(0,0,0,0.1); /* 左側に影を追加 */
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 9998;
  width: 50%; /* パネルの幅を50%に変更 */
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  right: 0; /* 右寄せに配置 */
}

/*ナビゲーション*/
#g-nav ul {
  position: absolute;
  z-index: 9990;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; /* ul要素の幅を親要素に対して80%に設定 */
  padding: 0;
}

/*リストのレイアウト設定*/

#g-nav li{
list-style: none;
  text-align: center;
  padding-bottom: 10px;
}

#g-nav li a{
color: #282828;
text-decoration: none;
padding:5px 10px;
display: inline-block;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: bold;
}

#g-nav ul li {
  opacity: 0; /* 初期状態は非表示 */
  transform: translateX(100px); /* 右に100px移動した状態からスタート */
  transition: all 0.8s; /* アニメーションの設定 */
}

/* パネルが開いた時のli要素のアニメーション */
#g-nav.panelactive ul li {
  opacity: 1; /* 表示状態に */
  transform: translateX(0); /* 元の位置に */
}


/* headerに関して */
header{
  height: 70px;
  padding: 5px 10px;
}

.header__inner{
  display: flex;
  justify-content:flex-start;
  align-items: center;
}

.header__contactButton {
    color:#282828;
    text-decoration: none;
}

.header__contact{
  margin-right: 10px;  
}

.top-image-ul{
  list-style: none;
}

.top-image-li{
  list-style: none;
}

/* mainに関して */

.main-content {
    padding: 30px 12px 12px 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content h1 {
        color: #7fd0ee;
        font-size: 1.7rem;
        margin: 0px 0 20px 0;
        position: relative;
        text-align: center;
    }

    @media screen and (min-width: 768px) {
      .main-content h1 {
        font-size: 3rem;
        margin: 80px 0 80px 0;
    }

    }

.main-content h1::after {
        content: "";
        display: block;
        width: 20%;
        height: 5px;
        background-color: #7fd0ee;
        margin: 10px auto 0;
    }
    


/* sectionに関して */
.section {
    margin-bottom: 50px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}

@media screen and (min-width: 600px) {
  .section {
  width: 49%;
  }
}

.feature-section h2 {
    font-size: 20px;
    color:  #2F3332;
    margin: 20px 0px 10px 0;
    text-align: center;
    font-size: 1.5rem;
}

.feature-section {
    margin: 0px 0 40px 0;
}


.feature-section p {
    width: 100%;
    margin: 0 auto ;
    font-size: 1rem;
    font-weight:bold;
    padding-bottom: 40px;
    text-align: center;
}

@media screen and (min-width: 768px) {
  .feature-section p {
    width: 90%;
    margin: 0 auto 50px auto;
    font-size: 1.5rem;
    font-weight:bold;
    padding-bottom: 20px;
    text-align: center;
}
}

.feature-section img {
  padding-bottom: 20px;
}

.feature-section_contents-img{
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.section img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    margin: 10px 0;
}

.feature-section ul{
  list-style: none;
}

.cta-button {
    display: inline-block;
    width: auto;
    text-align: center;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #7fd0ee;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #7fd0ee;
}

/* 電話・メールセクションはココから */
.contact-section1 {
    margin-bottom: 50px;
    padding: 20px;
    border: 1px solid #7fd0ee;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-section2 {
  margin-bottom: 50px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #7fd0ee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.red {
background-color: #7fd0ee;
color: #fff;
font-size: 10px;
padding: 3px 5px;
border-radius: 3px;
vertical-align: text-top;
margin-right: 5px;
}

@media screen and (min-width: 767px) {
.contact-section__inner{
  display: flex;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: auto 1fr auto;
}
}

.contact-method {
    text-align: center;
    margin-bottom: 30px;
}

.contact-method img {
    width: 50px;
    height: 50px;
    margin:0 auto 10px auto;
}

.contact-method h3 {
    font-size: 20px;
    margin: 0 0 5px;
    color: #333;
}

.contact-method p {
    font-size: 14px;
    color: #333;
    margin: 5px 0;
}

.contact-method a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
}
.contact-method a.phone {
    border: 1px solid #333;
}
.contact-method a.email {
  border: 1px solid #333;
}
.contact-method a.line {
  border: 1px solid #333;
}

.contact-method a:hover {
    opacity: 0.9;
}

@media screen and (min-width: 767px) {
  .contact-method{
width: 49%;
  }
  }
/* 電話・メールセクションはココまで */

/* お問い合わせ・連絡先はここから */

.content {
    position: relative;
    z-index: 2;
}

.content h2{
    color: #333;
    font-size: 1.5rem;
    margin: 0px 0 10px 0;
    text-align: center;
}

.content li{
 list-style: none;
}


.details {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 20px;
    line-height: 1.8;
}

.details span {
    display: block;
    margin-bottom: 10px;
}

/* footerに関して */
footer {
    background-color: #7fd0ee;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}


input.acceptance-401{
  width: 15px;
  margin: 30px 10px 30px 0;
  padding-right: 10px;
}

.contactform-title {
  text-align: center;
  margin-bottom: 10px;
}


.contactform-label {
  margin-bottom: 10px;
}

.box {
  width: 98%;                /* 横幅を200pxに指定 */
  height: 200px; 
  margin-top: 10px;              /* 横幅を200pxに指定 */
  padding: 5px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;      /* わかりやすくボーダーを引く */
  overflow-y: scroll;          /* 縦方向にスクロール可能にする */
}


