@charset "utf-8";

/*------------------------------------------------------------------------------

  ゆみ矯正歯科

------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------

  common

------------------------------------------------------------------------------*/
html,
body {
  color: #333;
}

html {
  min-height: 100%;
  position: relative;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* main {
  padding: 2rem;
} */

.container {
  margin: 0 auto;
}



/* ---- link ---------------------------------------- */
a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.5;
}

/* ---- web font-setting ---------------------------------------- */
/* font */
@import url('https://fonts.googleapis.com/css2family=Zen+Antique+Soft&family=Zen+Maru+Gothic:wght@500&display=swap');

.zen500 {
  font-family: 'Zen Antique Soft', 'Zen Maru Gothic', serif;
  letter-spacing: normal;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}




/*------------------------------------------------------------------------------

  header

------------------------------------------------------------------------------*/
header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

header h1 {
  width: 100px;
  background-color: #A14176;
  line-height: 1;
}

header h1 img {
  height: 100px;
}

header h1 a {
  display: block;
}

.header-flex {
  display: flex;
  align-items: center;
}

.header-telnumber {
  display: none;
}

@media screen and (min-width: 800px) {
  .header-telnumber {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.5rem;
    color: #fff;
    line-height: 66px;
    padding: 0 1rem;
  }

  .header-telnumber::before {
    content: "";
    position: absolute;
    left: -10px;
    width: 24px;
    height: 66px;
    background: url(../images/phone-fill.png) center 24px no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
}

@media screen and (min-width: 960px) {
  header h1 {
    width: 160px;
    height: 160px;
    padding: 10px;
  }

  header h1 img {
    width: 140px;
    height: 140px;
    border: solid 2px #f6cae2;
    border-radius: 8px;
    box-sizing: border-box;
  }

  .header-telnumber {
    font-size: 2rem;
    padding: 0 2rem;
  }

  .header-telnumber::before {
    content: "";
    position: absolute;
    left: -2px;
    width: 32px;
    height: 66px;
    background: url(../images/phone-fill.png) center 20px no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
}

/* ---- slider ---------------------------------------- */
#header-slider {
  width: 100%;
  /* height: 730px; */
  position: relative;
  overflow: hidden;
}

.bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.bg-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  object-fit: cover;
  object-position: center center;
}

.slider-catch {
  font-size: 2rem;
  color: #fff;
  text-shadow: #000 0 0 12px;
}

@media (min-width: 800px) {
  #header-slider {
    /* height: 600px; */
    margin-top: 66px;
  }

  .slider-catch {
    font-size: 2.5rem;
  }
}





/*------------------------------------------------------------------------------

  nav

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

#g-nav{
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position:fixed;
	z-index: -9999;
	opacity: 0;/* はじめは透過0 */
  /*ナビの位置と形状*/
	top:0;
	width:100%;
  height: 0;/*ナビの高さ*/
	background: rgba(161, 65, 118, 0.95);
  /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
  height: 100vh;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    padding: 0;
}

#g-nav.panelactive ul {
    display: block;
}

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

#g-nav li{
	list-style: none;
  text-align: center; 
}

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

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
  width: 50px;
  height:50px;
  background-color: #60003f;
  border-radius: 4px;
}
	
/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
	background-color: #fff;
  width: 45%;
}

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

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

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

.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%;
}



@media screen and (min-width: 800px) {
    .openbtn {
        display: none;
    }

    #g-nav{
        position:absolute;
        z-index: -1;
        opacity: 1;
        top:0;
        width:100%;
        height: auto;
        background: #A14176;
        /* padding-left: 160px; */
    }

    #g-nav ul {
        display: flex;
        justify-content: center;
        font-size: 0.75rem;
        position: relative;
        top:0;
        left:0;
        transform: none;
        padding: 0;
    }

    #g-nav li a{
        padding: 24px 10px;
        letter-spacing: normal;
    }
}





/*------------------------------------------------------------------------------

  footer

------------------------------------------------------------------------------*/
footer {
  text-align: center;
  color: #fff;
  background-color: #60003f;
  padding: 48px 0;
  margin-bottom: 135px;
}

footer h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

footer p {
  font-size: 0.875rem;
}

footer p:not(:last-child) {
  margin-bottom: 1rem;
}

.footer-tel a {
  color: #fff;
}

@media screen and (min-width: 800px) {
  footer {
    margin-bottom: 87px;
  }
}




/* ---- 固定メニュー ---------------------------------------- */
.footer-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #A14176;
  z-index: 10;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  text-align: center;
  font-weight: bold;
  padding: 1rem;
}

.footer-nav ul li a {
  color: #fff;
  padding: 1rem 3rem;
}

.footer-nav ul li a:hover {
  background-color: #dca2c2;
  color: #fff;
}

.footer-telnumber {
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}

.footer-telnumber a {
  color: #fff;
}

.footer-telnumber a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/phone-fill.png) no-repeat;
  background-size: contain;
  vertical-align: bottom;
  margin-right: 0.15rem;
}

@media screen and (min-width: 800px) {
  .footer-telnumber {
    display: none;
  }
}




/*------------------------------------------------------------------------------

  object - project

------------------------------------------------------------------------------*/
/* ---- common ---------------------------------------- */
/* heading */
.heading {
  font-size: 32px;
  margin-bottom: 1.5rem;
}

.subheading {
  font-size: 24px;
  margin-bottom: 1rem;
}

.title {
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 960px) {
    .heading {
        margin-bottom: 3rem;
    }

    .subheading {
        margin-bottom: 2rem;
    }
}

/* wrapper */
.wrapper {
  max-width: 960px;
  padding: 3rem 1rem;
  margin: 0 auto;
}

.wrapper-border {
  border: solid 1px #2589d0;
}

.wrapper-radius {
  border-radius: 4px;
}

@media screen and (min-width: 960px) {
    .wrapper {
        padding: 5rem 2rem;
    }
}

/* bg color */
.bg-color:nth-of-type(2n) {
  background-color: #F4F1EF;
}

/* column */
.column-left,
.column-right {
  min-width: 320px;
  padding: 0 1rem;
}



/* ---- ヘッダーイメージ（配下ページ） ---------------------------------------- */
.header-image-wrap {
  width: 100%;
  height: 160px;
  position: relative;
  overflow: hidden;
}

.header-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.header-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  object-fit: cover;
  object-position: center center;
}

@media screen and (min-width: 960px) {
  .header-image-wrap {
    height: 240px;
  }
}




/* ---- 404 ---------------------------------------- */
.heading404 {
  font-size: 1.5rem;
  text-align: center;
  color: #999;
  padding: 10rem 0 20rem;
}

@media screen and (min-width: 800px) {
  .heading404 {
    font-size: 2rem;
  }
}




/* ---- リード ---------------------------------------- */
@media screen and (min-width: 960px) {
    .lead-wrap {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .lead-wrap h2 {
        text-align: left;
    }

    .lead-wrap div {
        width: 50%;
    }
}




/* ---- 診療時間 ---------------------------------------- */
.schedule {
  width: 100%;
  font-size: 0.75rem;
  text-align: center;
  background-color: #fff;
  margin: 0 auto 1rem !important;
  border: solid 1px #60003f;
  border-radius: 4px;
}

.schedule th,
.schedule td {
  padding: 0.5rem 0.45rem;
  border-bottom: solid 1px #60003f;
}

.schedule tr:last-child th,
.schedule tr:last-child td {
  border-bottom: none;
}

.schedule th:nth-child(1) {
  border-right: solid 1px #60003f;
}

.schedule tr:nth-child(2) > td:nth-child(7),
.schedule tr:nth-child(2) > td:nth-child(8),
.schedule tr:nth-child(3) > td:nth-child(7),
.schedule tr:nth-child(3) > td:nth-child(8) {
  color: #A14176;
}

@media screen and (min-width: 960px) {
    .schedule {
        width: 640px;
    }
}

/* ---- 診療内容 ---------------------------------------- */
.medical-treatment-wrap > div {
  width: calc( ( 100% - 16px) / 2 ) ;
  margin: 0 1rem 1rem 0;
}

.medical-treatment-wrap > div:nth-child(2n) {
  margin-right: 0;
}

.medical-treatment-image-wrap > div {
  margin-bottom: 1rem;
}

@media screen and (min-width: 600px) {
    .medical-treatment-wrap {
        margin-bottom: 32px;
    }

    .medical-treatment-wrap > div {
        width: 240px ;
        /* width: calc( ( 100% - 48px) / 4 ) ; */
        margin: 0 3rem 0 0;
        /* margin: 0 1rem 0 0; */
    }
    
    .medical-treatment-wrap > div:nth-child(2n) {
        margin-right: 16px;
    }

    .medical-treatment-wrap > div:last-child {
        margin-right: 0;
    }

    .medical-treatment-image-wrap {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 32px;
    }

    .medical-treatment-image-wrap > div {
        width: calc( ( 100% - 16px) / 2 ) ;
        margin: 0 1rem 1rem 0;
    }

    .medical-treatment-image-wrap > div:nth-child(2n) {
        margin-right: 0;
    }

    /* .medical-treatment-image-wrap > div:nth-child(3) {
        width: 100%;
        margin-right: 0;
    } */
      
}

/* ---- お知らせ ---------------------------------------- */
.information-wrap {
  background-color: #fff;
  padding: 1rem;
  border: solid 1px #60003f;
  border-radius: 4px;
}

.entry:not(:last-child) {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: dotted 1px #cfcfcf;
}

.entry h3 {
  font-size: 1rem;
  color: #60003f;
}

.entry-date {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.entry-text {
  font-size: 0.875rem;
}

@media screen and (min-width: 960px) {
    .information-wrap {
        padding: 2rem;
        border-radius: 8px;
    }
}

/* ---- ご相談・ご予約 ---------------------------------------- */
.telnumber {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1;
}

.telnumber a {
  color: #A14176;
}

.telnumber a::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(../images/phone-fill-red.png) no-repeat;
  background-size: contain;
  vertical-align: bottom;
  margin-right: 0.15rem;
}


.interview-sheet a {
  font-weight: bold;
  text-decoration: underline;
  color: #A14176;
}



/* ---- 当院について ---------------------------------------- */
.about-image-wrap > div {
  margin-bottom: 1rem;
}

@media screen and (min-width: 600px) {
  .about-image-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  .about-image-wrap > div {
    width: calc( ( 100% - 16px) / 2 ) ;
    margin: 0 1rem 1rem 0;
  }

  .about-image-wrap > div:nth-child(2n) {
    margin-right: 0;
  }

  .about-image-wrap > div:nth-child(3) {
    width: 100%;
    margin-right: 0;
  }
}

@media screen and (min-width: 960px) {
    .subheading {
        text-align: center;
    }
}

/* ---- 医師のご紹介 ---------------------------------------- */
.doctor-wrap {
  background-color: #F4F1EF;
  padding: 1rem;
}

.doctor-ph {
  max-width: 400px;
  margin: 0 auto 1rem;
}

.doctor-profile h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.doctor-profile h3 small {
  margin-left: 1.5rem;
}

.doctor-profile h4 {
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: dotted 1px #999;
}

.career {
  font-size: 0.875rem;
}

.career dt {
  float: left;
  width: 120px;
}

.career dd {
  margin: 0 0 0.5rem 120px;
}

.career dd:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 800px) {
    .doctor-wrap {
        display: flex;
    }

    .doctor-ph {
        width: 320px;
        margin-right: 2rem;
        margin-bottom: 0;
    }

    .doctor-profile {
        width: calc( 100% - 352px);
    }
}

/* ---- アクセス ---------------------------------------- */
.exterior {
  max-width: 320px;
  margin: 0 auto 2rem;
}

address {
  font-style: normal;
  text-align: center;
}

address h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

address p:not(:last-child) {
  margin-bottom: 1rem;
}

.address-tel a {
  color: #333;
}

@media screen and (min-width: 768px) {
  .exterior {
    max-width: 100%;
    margin: 0;
  }

  .address-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .address-wrap > div,
  .address-wrap > address {
    width: 50%;
  }

  address {
    text-align: left;
    padding-left: 5rem;
  }

  address h3,
  address p:not(:last-child) {
    margin-bottom: 2rem;
  }
}

/* ---- よくある質問 ---------------------------------------- */
.faq-wrap {
  margin-bottom: 32px;
}

.faq-wrap dt {
  font-size: 0.875rem;
  color: #60003f;
  font-weight: bold;
  background-color: #F4F1EF;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.faq-wrap dd {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  margin: 0 0 2rem 0;
}

/* ---- 矯正歯科治療にともなう一般的なリスク・副作用について ---------------------------------------- */
.note {
  font-size: 0.875rem;
  padding: 0 0 0 1rem;
}

.note li:not(:last-child) {
  margin-bottom: 1rem;
}




/*------------------------------------------------------------------------------

  object - utility

------------------------------------------------------------------------------*/
/* ---- button ---------------------------------------- */
/* button 基本構成 */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border: none;
  font-weight: bold;
  transition: all .3s;
  position: relative;
}

/* button hover */
.btn:hover {
  background-color: #dca2c2;
  color: #A14176;
}

/* button color */
.btn-color-red {
  color: #A14176;
}

.btn-color-white {
  color: #fff;
}

/* button background color */
.btn-bgcolor-red {
  background-color: #A14176;
}

/* button 形状 */
.btn-square {
  border-radius: 5px;
}

.btn-round {
  border-radius: 100px;
}

.btn-border {
    border: solid 1px #A14176;
}

.btn-border-white {
  border: solid 1px #fff;
}

/* button サイズ */
.btn-small {
  max-width: 120px;
  padding: .4rem 1rem;
  font-size: 0.75rem;
}

.btn-medium {
  max-width: 240px;
  padding: .75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-large {
  max-width: 560px;
  padding: .9rem 2rem;
  font-size: 1rem;
}

/* button icon */
.btn-icon-red::after {
    content: "";
    position: absolute;
    right: 8px;
    width: 24px;
    height: 24px;
    background: url(../images/caret-circle-down.png) no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.btn-icon-white::after {
  content: "";
  position: absolute;
  right: 8px;
  width: 24px;
  height: 24px;
  background: url(../images/caret-circle-right-fill.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
}



/* ---- form ---------------------------------------- */
/* text box */
.textbox-label,
.textbox {
  color: #333;
}

.textbox-label {
  display: block;
  margin-bottom: 5px;
  font-size: .9em;
}

.textbox {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d2d2d2;
  border-radius: 3px;
  background: #f7f7f7;
  font-size: 1em;
  line-height: 1.5;
}

.textbox::placeholder {
  color: #999;
}

/* select box */
.selectbox {
  position: relative;
}

.selectbox::before,
.selectbox::after {
  position: absolute;
  content: '';
  pointer-events: none;
}

.selectbox::before {
  right: 0;
  display: inline-block;
  width: 2.8em;
  height: 2.8em;
  border-radius: 0 3px 3px 0;
  background-color: #2589d0;
  content: '';
}

.selectbox::after {
  position: absolute;
  top: 50%;
  right: 1.4em;
  transform: translate(50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: '';
}

.selectbox select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 280px;
  height: 2.8em;
  padding: .4em 3.6em .4em .8em;
  border: 2px solid #2589d0;
  border-radius: 3px;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}

.selectbox select:focus {
  outline: 1px solid #2589d0;
}

/* radio - list - */
.radio-list {
  border: none;
}

.radio-list label {
  display: flex;
  align-items: center;
  gap: 0 .5em;
  position: relative;
  width: 100%;
  font-size: 0.875rem;
  margin-bottom: .4em;
  padding: .5em .7em;
  border: 1px solid #2589d0;
  border-radius: 3px;
  background-color: #2589d026;
  cursor: pointer;
}

.radio-list label:has(:checked) {
  background-color: #2589d0;
  color: #fff;
}

.radio-list label::before,
.radio-list label:has(:checked)::after {
  border-radius: 50%;
  content: '';
}

.radio-list label::before {
  width: 14px;
  height: 14px;
  background-color: #fff;
}

.radio-list label:has(:checked)::after {
  position: absolute;
  top: 50%;
  left: calc(7px + .7em);
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  background-color: #2589d0;
}

.radio-list input {
  display: none;
}




/* ---- accordion ---------------------------------------- */
.accordion {
  /* max-width: 500px; */
  background-color: #f0f5f9;
}

.accordion:not([open]) {
  margin-bottom: 7px;
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  border-radius: 5px;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before,
.accordion summary::after {
  width: 3px;
  height: .9em;
  border-radius: 5px;
  background-color: #fff;
  content: '';
}

.accordion summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.accordion summary::after {
  transition: rotate .3s;
}

.accordion[open] summary::after {
  rotate: 90deg;
}

.accordion .accordion-contents {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 2em 2em 2em;
  color: #333333;
  transition: all 0.5s ease;
}

.accordion[open] .accordion-contents {
  transform: none;
  opacity: 1;
}




/* ---- width ---------------------------------------- */
.width640 {
  width: 640px;
}

.maxwidth960 {
  max-width: 960px;
}




/* ---- margin ---------------------------------------- */
.mb16 {
  margin-bottom: 16px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb32 {
  margin-bottom: 32px;
}

.mb48 {
  margin-bottom: 48px;
}

.mb64 {
  margin-bottom: 64px;
}

.mb80 {
  margin-bottom: 80px;
}

.mr16 {
  margin-right: 16px;
}

.margin-auto {
  margin: 0 auto;
}

.ml-auto {
  margin-left: auto;
}

/* ---- padding ---------------------------------------- */
.pd08 {
  padding: 8px;
}

.pd16 {
  padding: 16px;
}

.pd24 {
  padding: 24px;
}

.pd32 {
  padding: 32px;
}


/* ---- on / off ---------------------------------------- */
.on {
  display: none;
}

.off {
  display: block;
}

@media (min-width: 600px) {

  .on {
    display: block;
  }

  .off {
    display: none;
  }

}



/* ---- text ---------------------------------------- */
.sub {
  font-size: 18px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .sub {
    font-size: 24px;
    padding: 0 24px;
    margin-bottom: 0;
  }
}

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

.text-right {
  text-align: right;
}

.fs24 {
  font-size: 24px;
}

.fc-white {
  color: #fff;
}


/* ---- border ---------------------------------------- */
.bb {
  border-bottom: solid 1px #cfcfcf;
}



/* ---- page top ---------------------------------------- */
#pagetop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  z-index: 20;
}


/* ---- google map responsive ---------------------------------------- */
.g-map {
  position: relative;
  padding-top: 56.25%;
  /* or 75%;(4:3) */
  height: 0;
  overflow: hidden;
}

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

/* ---- youtube responsive ---------------------------------------- */
.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}





/*------------------------------------------------------------------------------

  layout

------------------------------------------------------------------------------*/
/* ---- grid ---------------------------------------- */
.grid-1col {
  display: grid;
  grid-template-rows: 560px;
  grid-template-columns: 1fr;
}

.grid-2col {
  display: grid;
  grid-template-rows: 560px;
  grid-template-columns: 1fr 240px;
}


/* ---- flex ---------------------------------------- */
.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

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

.flex-wrap {
  flex-wrap: wrap;
}
